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) {