initializeApp method

  1. @override
Future<CoreInitializeResponse> initializeApp(
  1. String appName,
  2. CoreFirebaseOptions initializeAppRequest
)
override

Implementation

@override
Future<CoreInitializeResponse> initializeApp(
  String appName,
  CoreFirebaseOptions initializeAppRequest,
) async {
  return CoreInitializeResponse(
    name: appName,
    options: CoreFirebaseOptions(
      apiKey: '123',
      projectId: '123',
      appId: '123',
      messagingSenderId: '123',
    ),
    pluginConstants: {},
  );
}