initialize method
Implementation
@override
Future<bool?> initialize(
String apiKey, {
bool isDebug = false,
String? userId,
}) async {
return await methodChannel.invokeMethod('init', {
'apiKey': apiKey,
"debugMode": isDebug,
"app_user_id": userId,
});
}