registerSDK static method

Future<void> registerSDK({
  1. String appKey = "",
  2. String appSecret = "",
})

Implementation

static Future<void> registerSDK({String appKey = "", String appSecret = ""}) {
  final Map params = {'appKey': appKey, 'appSecret': appSecret};
  return _channel.invokeMethod(FlyVerifySDKMethods.register.name, params);
}