There can be multiple reasons for this error. I am just listing some pointers for you to check :
Enable :
This can be caused by a disabled Email/Password sign in, which is
disabled by default. Enable the Authentication section in the
Firebase console as shown below or you can temporarily try the
"anonymously" / guest sign in in Firebase Console.
Enable the Token Services API in Google Cloud Console
Enable Cloud Firestore API

If you are using the local Authentication emulator, then it is possible to let your app talk to it by connecting to this using the useAuthEmulator method. In Flutter libraries, this has landed in version 0.20 and later of the firebase_auth package.
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
// Ideal time to initialize
await FirebaseAuth.instance.useAuthEmulator('localhost', 9099);
//…
}
If you are using the local Firestore emulators, then it is possible to let your app talk to it by connecting to this using the useFirestoreEmulator method.
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp();
// Ideal time to initialize
FirebaseFirestore.instance.useFirestoreEmulator('localhost', 8080);
//...
}
- Try upgrading to the latest version of firebase.
- Ensure you pass the correct port on which the emulator is running on.
- Ensure you have enabled network connections to the emulators in your
apps following the emulator usage instructions in the general
FlutterFire installation notes for each operating system.
Update :
For anyone visiting this question, these pointers above did not help our OP for her case, what helped her was, compare current google-services.json from the project with the one that the Firebase console generates, after you generate the SHA-1 Key (to create an OAuth2 client and API key for your app. Check this stackoverflow thread it explains how you can add SHA-1 Key. If you want to do this using terminal, have a look at this article) And it turned out they were not quite the same. So adding the new google-service.json to project under android/app and executing flutter clean
was the trick.