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
  • 565,676
  • 79
  • 828
  • 807

1 Answers1

0

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

Huthaifa Muayyad
  • 11,321
  • 3
  • 17
  • 49