CheckoutWebView constructor

const CheckoutWebView({
  1. Key? key,
  2. required String checkoutUrl,
  3. required String returnDeepLink,
  4. required ValueChanged<Uri> onReturn,
  5. String? appBarTitle,
})

Creates a new CheckoutWebView.

Implementation

const CheckoutWebView({
  super.key,
  required this.checkoutUrl,
  required this.returnDeepLink,
  required this.onReturn,
  this.appBarTitle,
});