BankPerk constructor

const BankPerk({
  1. required String id,
  2. required String partnerName,
  3. required String title,
  4. required String description,
  5. String? logoUrl,
  6. String? discountLabel,
  7. DateTime? expiresAt,
  8. bool isActivated = false,
})

Implementation

const BankPerk({
  required this.id,
  required this.partnerName,
  required this.title,
  required this.description,
  this.logoUrl,
  this.discountLabel,
  this.expiresAt,
  this.isActivated = false,
});