Customer constructor

Customer({
  1. String? customerId,
  2. String? customerName,
  3. String? email,
  4. String? phone,
  5. String? createdAt,
  6. List<Cards>? cards,
})

Implementation

Customer({
    this.customerId,
    this.customerName,
    this.email,
    this.phone,
    this.createdAt,
    this.cards,});