ReCaptchaWebView constructor

const ReCaptchaWebView({
  1. Key? key,
  2. required String url,
  3. required double width,
  4. required double height,
  5. required dynamic onTokenReceived(
    1. String token
    ),
  6. Color? webViewColor = Colors.transparent,
})

Implementation

const ReCaptchaWebView(
    {Key? key,
    required this.url,
    required this.width,
    required this.height,
    required this.onTokenReceived,
    this.webViewColor = Colors.transparent})
    : super(key: key);