MonoWebView constructor
const
MonoWebView({
- Key? key,
- required String apiKey,
- Widget? error,
- dynamic onEvent(
- MonoEvent event,
- MonoEventData data
- dynamic onSuccess(
- String code
- dynamic onClosed()?,
- dynamic onLoad()?,
- String? paymentUrl,
- String? reference,
- Map<
String, dynamic> ? config, - String reAuthCode = '',
- required bool paymentMode,
Implementation
const MonoWebView(
{Key? key,
required this.apiKey,
this.error,
this.onEvent,
this.onSuccess,
this.onClosed,
this.onLoad,
this.paymentUrl,
this.reference,
this.config,
this.reAuthCode = '', required this.paymentMode})
: super(key: key);