initialize method

  1. @override
Future<void> initialize({
  1. required String androidAppKey,
  2. required String iosAppKey,
  3. required String channel,
  4. required bool logEnabled,
  5. 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,
  });
}