SmallPassCard constructor

SmallPassCard({
  1. Key? key,
  2. required Datum package,
  3. double? iconSize,
  4. double? width,
  5. double? height,
  6. double? logoSize,
  7. double? nameFontSize,
  8. double? expirationFontSize,
  9. double? nameSpacing,
  10. EdgeInsets? padding,
  11. DateTime? expiryDate,
})

Implementation

SmallPassCard({
  super.key,
  required this.package,
  this.iconSize,
  this.width,
  this.height,
  this.logoSize,
  this.nameFontSize,
  this.expirationFontSize,
  this.nameSpacing,
  this.padding,
  this.expiryDate,
});