init method
Future<void>
init({
- String? androidApiKey,
- String? iosApiKey,
- bool androidPrivacyShown = true,
- bool androidPrivacyAgreed = true,
override
Implementation
@override
Future<void> init({
String? androidApiKey,
String? iosApiKey,
bool androidPrivacyShown = true,
bool androidPrivacyAgreed = true,
}) async {
await methodChannel.invokeMethod<void>('init', <String, Object?>{
'androidApiKey': androidApiKey,
'iosApiKey': iosApiKey,
'androidPrivacyShown': androidPrivacyShown,
'androidPrivacyAgreed': androidPrivacyAgreed,
});
}