Answers for ""FirebaseOptions cannot be null when creating the default app.""

0

options != null "FirebaseOptions cannot be null when creating the default app."

void main() async {
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp(
    // Replace with actual values
    options: FirebaseOptions(
      apiKey: "XXX",
      appId: "XXX",
      messagingSenderId: "XXX",
      projectId: "XXX",
    ),
  );
  runApp(MyApp());
}
Posted by: Guest on December-25-2021
0

"FirebaseOptions cannot be null when creating the default app."

class Configurations {
      static const _apiKey = "Your values";
      static const _authDomain = "Your values";
      static const _projectId = "Your values";
      static const _storageBucket = "Your values"
      static const _messagingSenderId ="Your values"
      static const _appId = "Your values"
    
//Make some getter functions
      String get apiKey => _apiKey;
      String get authDomain => _authDomain;
      String get projectId => _projectId;
      String get storageBucket => _storageBucket;
      String get messagingSenderId => _messagingSenderId;
      String get appId => _appId;
    }
Posted by: Guest on April-15-2022

Code answers related to ""FirebaseOptions cannot be null when creating the default app.""

Browse Popular Code Answers by Language