registerApp static method

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

Implementation

static Future<void> registerApp(String appKey, String appSecret) async {
	return await _channel.invokeMethod('registerApp', {'appKey': appKey, 'appSecret': appSecret});
}