UserType constructor

UserType({
  1. String? id,
  2. required String? name,
  3. required String? email,
  4. DateTime? birthDay,
  5. DateTime? createdDate,
  6. AccountState? userState,
  7. Gender? gender,
  8. Type? type,
  9. String? avatar,
  10. CustomLocation? loc,
  11. String? phoneNumber,
  12. String? address,
})

Implementation

UserType({
  this.id,
  required this.name,
  required this.email,
  this.birthDay,
  this.createdDate,
  this.userState,
  this.gender,
  this.type,
  this.avatar,
  this.loc,
  this.phoneNumber,
  this.address,
});