initSDK method
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},
);
}