CaptchaParams constructor

CaptchaParams({
  1. required CaptchaType mode,
  2. required dynamic onError(
    1. String error
    ),
  3. required dynamic onSuccess(
    1. String token
    ),
})

Implementation

CaptchaParams({
  required this.mode,
  required this.onError,
  required this.onSuccess,
});