CustomerModel constructor

CustomerModel({
  1. int? id,
  2. String? email,
  3. String? phone,
  4. String? status,
  5. String? role,
  6. List? groups,
  7. Attributes? attributes,
  8. String? firstName,
  9. String? lastName,
  10. String? businessCode,
  11. bool? emailVerified,
  12. bool? phoneVerified,
  13. String? createdAt,
  14. String? chatRoomId,
})

Implementation

CustomerModel({
    this.id,
    this.email,
    this.phone,
    this.status,
    this.role,
    this.groups,
    this.attributes,
    this.firstName,
    this.lastName,
    this.businessCode,
    this.emailVerified,
    this.phoneVerified,
    this.createdAt,
    this.chatRoomId,
});