PaymentFailedView constructor

const PaymentFailedView({
  1. Key? key,
  2. required PaymentInfo paymentInfo,
  3. required String message,
  4. String title = "Transaction Failed",
})

Implementation

const PaymentFailedView({
  Key? key,
  required this.paymentInfo,
  required this.message,
  this.title = "Transaction Failed",
}) : super(key: key);