initZoom method
Implementation
@override
Future<bool?> initZoom({
required String appKey,
required String appSecret,
}) async {
final version = await methodChannel.invokeMethod<bool>(
'initZoom',
{
"appKey": appKey,
"appSecret": appSecret,
},
);
return version;
}