CardPayButton constructor
const
CardPayButton({
- Key? key,
- required dynamic onPressed(),
- CardPayButtonStatus? initStatus,
- required String text,
Button representing the option to submit the credit card info and start the process of a payment.
Implementation
const CardPayButton({
Key? key,
required this.onPressed,
this.initStatus,
required this.text,
}) : super(key: key);