setCaptcha method

void setCaptcha(
  1. String value
)

Implementation

void setCaptcha(String value) {
  _webController?.evaluateJavascript(
      source:
          "(function() { document.getElementById('captcha').value =  '$value'; return 'success'; })();");
}