PaymentCard constructor
- Key? key,
- required PaymentMethod paymentMethod,
- required double totalAmount,
- bool isSelected = false,
- bool isMemberShip = false,
Implementation
const PaymentCard({
super.key,
required this.paymentMethod,
required this.totalAmount,
this.isSelected = false,
this.isMemberShip = false,
});