Voucher constructor
- {Key? key,
- required VoucherModel voucherModel,
- required bool alreadyCanceled,
- required bool canceled,
- required String description}
Implementation
const Voucher({
Key? key,
required this.voucherModel,
required this.alreadyCanceled,
required this.canceled,
required this.description,
}) : super(key: key);