CaptchaPage constructor

CaptchaPage({
  1. Key? key,
  2. required ResponsePage? responsePage,
  3. ValueChanged<String>? onCaptchaResolved,
  4. String? captchaUrl,
})

Implementation

CaptchaPage(
    {Key? key,
    required this.responsePage,
    this.onCaptchaResolved,
    this.captchaUrl})
    : super(key: key);