PaymentGatewayWebview constructor

const PaymentGatewayWebview({
  1. Key? key,
  2. required String checkoutURL,
  3. required String returnURL,
  4. required String cancelURL,
})

Implementation

const PaymentGatewayWebview({
  super.key,
  required this.checkoutURL,
  required this.returnURL,
  required this.cancelURL,
});