init method

  1. @override
Future<int?> init(
  1. String key
)
override

Initialize the SDK

Implementation

@override
Future<int?> init(String key) async {
  return await methodChannel.invokeMethod<int>('init', {'key': key});
}