VoucherHowToUseScreen constructor

const VoucherHowToUseScreen({
  1. Key? key,
  2. required String brandName,
  3. required String deeplink,
  4. required String imageUrl,
  5. String? cardNumber,
  6. String? cardPin,
})

Implementation

const VoucherHowToUseScreen({
  super.key,
  required this.brandName,
  required this.deeplink,
  required this.imageUrl,
  this.cardNumber,
  this.cardPin,
});