MakePaymentWebViewScreen constructor

MakePaymentWebViewScreen({
  1. Key? key,
  2. required String? makePaymentHtmlContent,
  3. required String? webViewSuccessResponseUrl,
  4. required String? webViewFailureResponseUrl,
  5. required bool isMerchantHosted,
})

Implementation

MakePaymentWebViewScreen(
    {Key? key,
    required this.makePaymentHtmlContent,
    required this.webViewSuccessResponseUrl,
    required this.webViewFailureResponseUrl,
    required this.isMerchantHosted})
    : super(key: key);