initSDK method

  1. @override
Future<void> initSDK({
  1. required String appId,
  2. required String appKey,
  3. bool isDebug = false,
})
override

Implementation

@override
Future<void> initSDK({
  required String appId,
  required String appKey,
  bool isDebug = false,
}) async {
  return await methodChannel.invokeMethod(
    'initSDK',
    {'appId': appId, 'appKey': appKey, 'isDebug': isDebug},
  );
}