diff --git a/firestore/lib/src/model/restaurant.dart b/firestore/lib/src/model/restaurant.dart index 267c9ce3..7b9e05d7 100644 --- a/firestore/lib/src/model/restaurant.dart +++ b/firestore/lib/src/model/restaurant.dart @@ -69,4 +69,8 @@ class Restaurant { photo: getRandomPhoto(), ); } + @override + String toString() { + return 'Restaurant{id: $id, name: $name, category: $category, city: $city, avgRating: $avgRating, numRatings: $numRatings, price: $price, photo: $photo, reference: $reference}'; + } } diff --git a/firestore/lib/src/restaurant_page.dart b/firestore/lib/src/restaurant_page.dart index 6e42f4e7..bee86091 100644 --- a/firestore/lib/src/restaurant_page.dart +++ b/firestore/lib/src/restaurant_page.dart @@ -43,8 +43,9 @@ class _RestaurantPageState extends State { } void _initAsyncData() async { + // widget is null or something final reviews = await _firestoreRestaurantProvider - .getReviewsForRestaurant(widget.restaurant.id!); + .getReviewsForRestaurant("wARqBbQnTHaxV8Tig7FM"); setState(() { _isLoading = false;