PaymobInAppWebView constructor

const PaymobInAppWebView({
  1. Key? key,
  2. required String redirectURL,
  3. void onPayment(
    1. PaymentPaymobResponse
    )?,
  4. Widget? title,
  5. Color? appBarColor,
})

Implementation

const PaymobInAppWebView({
  super.key,
  required this.redirectURL,
  this.onPayment,
  this.title,
  this.appBarColor,
});