WalletCardMetadata constructor

const WalletCardMetadata({
  1. required String title,
  2. String? subtitle,
  3. String? description,
  4. required String organizationName,
  5. required String serialNumber,
  6. DateTime? expirationDate,
  7. DateTime? relevantDate,
  8. List<WalletCardLocation>? locations,
  9. Map<String, String>? customFields,
})

Implementation

const WalletCardMetadata({
  required this.title,
  this.subtitle,
  this.description,
  required this.organizationName,
  required this.serialNumber,
  this.expirationDate,
  this.relevantDate,
  this.locations,
  this.customFields,
});