init static method

Future<void> init(
  1. String appKey,
  2. String appSecret
)

Implementation

static Future<void> init(String appKey, String appSecret) async {
  Map args = {"appKey": appKey, "appSecret": appSecret};
  _channel.invokeMethod("init", args);
}