verifyCaptcha method

bool verifyCaptcha(
  1. String userInput
)

Verify user input against CAPTCHA

Implementation

bool verifyCaptcha(String userInput) {
  return userInput == _captchaText;
}