WebViewPayment constructor

const WebViewPayment({
  1. Key? key,
  2. required BaseLogger logger,
  3. required String formUrl,
  4. required String returnUrl,
  5. String? failUrl,
  6. OnFinished? onFinished,
  7. OnLoad? onLoad,
  8. OnError? onError,
  9. WebViewCreatedCallback? onWebViewCreated,
})

WebView для оплаты транзакции и прохождения 3-D Secure

Implementation

const WebViewPayment({
  Key? key,
  required this.logger,
  required this.formUrl,
  required this.returnUrl,
  this.failUrl,
  this.onFinished,
  this.onLoad,
  this.onError,
  this.onWebViewCreated,
}) : super(key: key);