init method

  1. @override
Future<Map?> init(
  1. dynamic appKey,
  2. dynamic appSecretKey
)
override

Implementation

@override
Future<Map?> init(appKey, appSecretKey) async {
  final result = await methodChannel.invokeMethod<Map>(
      'init', {"appKey": appKey, "appSecretKey": appSecretKey});
  return result;
}