WebViewSwitcher constructor

const WebViewSwitcher({
  1. Key? key,
  2. required PayloadModel payload,
  3. required ValueSetter<Map> onSuccess,
  4. required ValueSetter onCancel,
})

Implementation

const WebViewSwitcher(
    {Key? key,
    required this.payload,
    required this.onSuccess,
    required this.onCancel})
    : super(key: key);