initialize method
Future<void>
initialize({
- required String androidAppKey,
- required String iosAppKey,
- required String channel,
- required bool logEnabled,
- required bool encryptEnabled,
override
Implementation
@override
Future<void> initialize({
required String androidAppKey,
required String iosAppKey,
required String channel,
required bool logEnabled,
required bool encryptEnabled,
}) async {
await methodChannel.invokeMethod('initialize', {
'androidAppKey': androidAppKey,
'iosAppKey': iosAppKey,
'channel': channel,
'logEnabled': logEnabled,
'encryptEnabled': encryptEnabled,
});
}