Future execute()

in lib/recaptcha_enterprise_method_channel.dart [38:48]


  Future<String> execute(String action, {double? timeout}) async {
    Map<String, dynamic> opts = {
      'action': action,
    };

    if (timeout != null) {
      opts['timeout'] = timeout;
    }

    return await methodChannel.invokeMethod('execute', opts);
  }