ChapaWebView constructor

ChapaWebView({
  1. Key? key,
  2. required String url,
  3. required String fallBackNamedUrl,
  4. required String transactionReference,
  5. required String amountPaid,
  6. dynamic onPaymentFinished(
    1. String,
    2. String,
    3. String
    )?,
})

Constructor for ChapaWebView ignore: use_super_parameters

Implementation

ChapaWebView({
  Key? key,
  required this.url,
  required this.fallBackNamedUrl,
  required this.transactionReference,
  required this.amountPaid,
  this.onPaymentFinished,
}) : super(key: key);