Customer constructor

Customer({
  1. int? id,
  2. String? uniqueId,
  3. String? displayName,
  4. String? email,
  5. String? phone,
  6. String? thumbnail,
  7. bool? isUser,
})

Implementation

Customer(
    {this.id,
    this.uniqueId,
    this.displayName,
    this.email,
    this.phone,
    this.thumbnail,
    this.isUser});