handleMethodCall method
Implementation
Future<dynamic> handleMethodCall(MethodCall call) async {
switch (call.method) {
default:
throw PlatformException(
code: 'Unimplemented',
details:
'g_recaptcha_v3 for web doesn\'t implement \'${call.method}\'',
);
}
}