init method
Implementation
@override
Future<void> init(
{required String appKey, bool allowClipboardAccess = true}) {
final arguments = <String, dynamic>{
'appKey': appKey,
'allowClipboardAccess': allowClipboardAccess
};
return methodChannel.invokeMethod('init', arguments);
}