0

whenever i connect firebase with flutter it gives me this type of error . undefined class 'FirebaseUser' and also i am not able to check wheteher my firebase is linked with flutter project or not !

return FlatButton(
          child: const Text('Sign out'),
          textColor: Theme.of(context).buttonColor,
          onPressed: () async {
            final FirebaseUser user = await _auth.currentUser;
            if (user == null) {
              
Frank van Puffelen
  • 499,950
  • 69
  • 739
  • 734

1 Answers1

0

What version of the plugin are you using? FirebaseAuth now uses User instead of FirebaseUser.

Huthaifa Muayyad
  • 9,518
  • 3
  • 12
  • 37