LoyaltyAccount constructor

LoyaltyAccount({
  1. String? updatedAt,
  2. String? createdAt,
  3. String? id,
  4. String? customerId,
  5. int? balance,
  6. String? enrolledAt,
  7. List<LoyaltyAccountExpiringPointDeadline>? expiringPointDeadlines,
  8. int? lifetimePoints,
  9. LoyaltyAccountMapping? mapping,
  10. String? programId,
})

Implementation

LoyaltyAccount({
  this.updatedAt, this.createdAt, this.id, this.customerId,
this.balance, this.enrolledAt, this.expiringPointDeadlines, this.lifetimePoints,
  this.mapping, this.programId
});