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