GiftCard constructor

GiftCard({
  1. GiftCardStatus? status,
  2. String? id,
  3. String? createdAt,
  4. List<String>? customerIds,
  5. GiftCardType? type,
  6. Money? balanceMoney,
  7. String? gan,
  8. GiftCardGANSource? ganSource,
})

Implementation

GiftCard({
  this.status, this.id, this.createdAt, this.customerIds,
  this.type, this.balanceMoney, this.gan, this.ganSource
});