You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Non-nullable instance field 'user' must be initialized. Try adding an initializer expression, or a generative constructor that initializes it, or mark it
#3
Open
vedantbahel opened this issue
Nov 17, 2021
· 1 comment
I tried implementing the same but it gives me error:
"Non-nullable instance field 'user' must be initialized.
Try adding an initializer expression, or a generative constructor that initializes it, or mark it"
for
User user;
Timer timer;
And if I further do
User? user;
Timer? timer;
then it throw exception
No implementation found for method Auth#registerIdTokenListener on channel plugins.flutter.io/firebase_auth
The text was updated successfully, but these errors were encountered:
I tried implementing the same but it gives me error:
"Non-nullable instance field 'user' must be initialized.
Try adding an initializer expression, or a generative constructor that initializes it, or mark it"
for
And if I further do
then it throw exception
No implementation found for method Auth#registerIdTokenListener on channel plugins.flutter.io/firebase_auth
The text was updated successfully, but these errors were encountered: