init static method

Future<void> init({
  1. required String appKey,
  2. bool testMode = false,
})

Implementation

static Future<void> init(
    {required String appKey, bool testMode = false}) async {
  return _channel.invokeMethod(
      "init", <String, dynamic>{"appKey": appKey, "test": testMode});
}