darshankawar

Results 1045 comments of darshankawar

You may directly try to use latest `collection` package version and see if it helps, and keep `firebase_auth` version to `3.5.0`

@stevebread Do you have `firebase_auth_platform_interface: ^6.5.3` added in your pubspec ? Also, what's the flutter sdk constraint version are you on ? (ex: sdk: ">=2.16.0

Thanks for the details @stevebread. I created a new Flutter project from AS and followed all steps mentioned in the instructions link you shared above, but still didn't get the...

Good to know your issue is resolved. I am going ahead and closing as resolved.

@Turburlar Looking at the code you shared above, you don't seem to be initializing Firebase before using its service, and hence it is throwing the error and indicating you to...

@scatboy777 Looking at the error: ``` 5 Runner 0x4cce4c -[FLTFirebaseFirestorePlugin queryGet:withMethodCallResult:] + 472 (FLTFirebaseFirestorePlugin.m:472) 6 Runner 0x4cb2dc -[FLTFirebaseFirestorePlugin handleMethodCall:result:] + 227 (FLTFirebaseFirestorePlugin.m:227) ``` It indicates, there's something missing / wrong...

Check if something like [this](https://github.com/firebase/flutterfire/issues/7451#issuecomment-988535697) would help. Also, a minimal code sample would be helpful to debug further.

Can you please provide entire query that you are using ? > User? user = FirebaseAuth.instance.currentUser; > if (user == null) return; Here you are checking if user is null....