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