initializeApp static method

Future<void> initializeApp({
  1. String? name,
  2. FirebaseOptions? options,
  3. Settings? settings,
  4. String? rootPath,
  5. bool isWebCache = true,
})

Flamingo initializeApp. Required before using Firebase.

Implementation

static Future<void> initializeApp({
  String? name,
  FirebaseOptions? options,
  Settings? settings,
  String? rootPath,
  bool isWebCache = true,
}) async {
  await Firebase.initializeApp(name: name, options: options);
  overrideWithSetting(
    settings: settings,
    rootPath: rootPath,
    isWebCache: isWebCache,
  );
}