londonappbrewery / Flash-Chat-Flutter-Complete

The completed code for the Flash Chat Project - The Complete Flutter Development Bootcamp
https://www.appbrewery.co/
92 stars 133 forks source link

Update chat_screen.dart #18

Closed Melanee-Melanee closed 2 years ago

Melanee-Melanee commented 3 years ago

At the beginning of this page, these two lines of code are been deprecated and the correct forms are:

final _firestore = FirebaseFirestore.instance; 
User loggedInUser;
ShishirRijal commented 3 years ago

I think, along with the above changes we need to update the others lines too. This works for me... final messages = snapshot.data. final messageText = message.data()['text']; final messageSender = message.data()['sender'];