PECard constructor

PECard({
  1. String? env,
  2. required String token,
  3. required CardData cardData,
})

Creates a new instance of PECard.

  • env: The environment in which the card was created.
  • token: A unique token representing the card.
  • cardData: A CardData object containing the card details.

Implementation

PECard({
  this.env,
  required this.token,
  required this.cardData,
});