PaymentWebView constructor

const PaymentWebView({
  1. Key? key,
  2. String? title,
  3. dynamic onPageStarted(
    1. String url
    )?,
  4. dynamic onPageFinished(
    1. String url
    )?,
  5. dynamic onDisposed()?,
  6. dynamic onTapCloseButton()?,
  7. required Uri paymentRequestUrl,
})

Implementation

const PaymentWebView({
  Key? key,
  this.title,
  this.onPageStarted,
  this.onPageFinished,
  this.onDisposed,
  this.onTapCloseButton,
  required this.paymentRequestUrl,
}) : super(key: key);