Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flutter: Unhandled Exception: Bad state: field does not exist within the DocumentSnapshotPlatform

I am new to flutter and i am building a social media App through tutorial which i am now customizing. Now I tried to add more input fields to a users profile page then i started getting the error below. When i could login my timeline page turned red with warning Bad state: field does not exist within the DocumentSnapshotPlatform

I ran Flutter clean and now my user cannot log into the app

I am getting this error:

E/flutter ( 3971): [ERROR:flutter/lib/ui/ui_dart_state.cc(177)] Unhandled Exception: Bad state: field does not exist within the DocumentSnapshotPlatform
E/flutter ( 3971): #0      DocumentSnapshotPlatform.get._findKeyValueInMap
package:cloud_firestore_platform_interface/…/platform_interface/platform_interface_document_snapshot.dart:82
E/flutter ( 3971): #1      DocumentSnapshotPlatform.get._findComponent
package:cloud_firestore_platform_interface/…/platform_interface/platform_interface_document_snapshot.dart:98
E/flutter ( 3971): #2      DocumentSnapshotPlatform.get
package:cloud_firestore_platform_interface/…/platform_interface/platform_interface_document_snapshot.dart:113
E/flutter ( 3971): #3      DocumentSnapshot.get
package:cloud_firestore/src/document_snapshot.dart:49
E/flutter ( 3971): #4      DocumentSnapshot.[]
package:cloud_firestore/src/document_snapshot.dart:56
E/flutter ( 3971): #5      new User.fromDocument
package:findemed/models/user.dart:46
E/flutter ( 3971): #6      _HomeState.createUserInFirestore
package:findemed/pages/home.dart:152
E/flutter ( 3971): <asynchronous suspension>
E/flutter ( 3971): #7      _HomeState.handleSignIn
package:findemed/pages/home.dart:60
E/flutter ( 3971): #8      _HomeState.initState.<anonymous closure>
package:findemed/pages/home.dart:46
E/flutter ( 3971): #9      _rootRunUnary (dart:async/zone.dart:1198:47)

The initial was pointing to this dart section of my home file

buildUsersToFollow() {
  return StreamBuilder(
    stream: usersRef.orderBy('timestamp', descending: true)
    .limit(0)
    .snapshots(),
    builder: (context, snapshot) {
      if (!snapshot.hasData) {
        return circularProgress(context);
      }
      List<UserResult> userResults = [];
      snapshot.data.docs.forEach((doc) {
        User user = User.fromDocument(doc);
        final bool isAuthUser = currentUser.id == user.id;
        final bool isFollowingUser = followingList.contains(user.id);
        // remove auth user from recommended list
        if (isAuthUser) {
          return;
        } else if (isFollowingUser) {
          return;
        } else {
          UserResult userResult = UserResult(user);
          userResults.add(userResult);
        }
        });


Now its pointing to this snippet:

factory User.fromDocument(DocumentSnapshot doc) {
    return User(
      id: doc['id'],
      email: doc['email'],
      username: doc['username'],
      photoUrl: doc['photoUrl'],
      displayName: doc['displayName'],
      bio: doc['bio'],      
      fullNames: doc['fullNames'],
      practice: doc['practice'],
      speciality: doc['speciality'],
      phone: doc['phone'],
      mobile: doc['mobile'],
      emergency: doc['emergency'],
      address: doc['address'],
      city: doc['city'],
      location: doc['location'],
    );
  }

and this is the other bit of code pointed out in the stack

currentUser = User.fromDocument(doc);
    print(currentUser);
    print(currentUser.username);
like image 296
Ace Avatar asked Nov 22 '20 00:11

Ace


1 Answers

For the latest version of cloud_firestore (2.4.0 or above) finally i found the solution:

And the older version of cloud_firestore it is solved by simply adding ?? at the end to avoid a null value:

factory User.fromDocument(DocumentSnapshot doc) {
   return User(
      id: doc.data()['id'] ?? '',
   );
}

but in the new version that not possible because return Bad state

factory User.fromDocument(DocumentSnapshot doc) {
   return User(
       id: doc.get('id')
   );
}

And it is solved by simply checking that the doc contains the key:

factory User.fromDocument(DocumentSnapshot doc) {
   return User(
      id: doc.data().toString().contains('id') ? doc.get('id') : '', //String
      amount: doc.data().toString().contains('amount') ? doc.get('amount') : 0,//Number
      enable: doc.data().toString().contains('enable') ? doc.get('enable') : false,//Boolean
   );
}

Hope this helps, regards! :)

like image 93
silexcorp Avatar answered Oct 14 '22 18:10

silexcorp