init static method
Implementation
static Future<int> init(
String appKey, String appSecret, String packId) async {
final int res = await _channel.invokeMethod(
"init", {"appKey": appKey, "appSecret": appSecret, "packId": packId});
return res;
}