initialize method

  1. @override
Future<void> initialize(
  1. String apiKey, {
  2. bool isDebug = false,
})
override

Implementation

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