MonoWebView constructor

const MonoWebView({
  1. Key? key,
  2. required String apiKey,
  3. Widget? error,
  4. dynamic onSuccess(
    1. String code
    )?,
  5. dynamic onClosed()?,
})

Implementation

const MonoWebView(
    {Key? key,
    required this.apiKey,
    this.error,
    this.onSuccess,
    this.onClosed})
    : super(key: key);