PaymentSuccessView constructor
const
PaymentSuccessView({
- Key? key,
- required PaymentInfo paymentInfo,
- required String message,
- String title = "Transaction Successful!",
- required Function onClick,
Implementation
const PaymentSuccessView({
Key? key,
required this.paymentInfo,
required this.message,
this.title = "Transaction Successful!",
required this.onClick,
}) : super(key: key);