init method

  1. @override
Future<void> init({
  1. String? googleServiceInfoPlistPathOverride,
  2. bool testing = false,
})
override

Implementation

@override
Future<void> init({
  String? googleServiceInfoPlistPathOverride,
  bool testing = false,
}) async {
  await methodChannel.invokeMethod<String>('initSDK', {
    'filePath': googleServiceInfoPlistPathOverride,
    'testing': testing,
  });
}