User constructor

User({
  1. String? uid,
  2. String? email,
  3. String? firstName,
  4. String? lastName,
  5. String? phone,
  6. String? countryCode,
  7. dynamic country,
  8. dynamic password,
  9. String? role,
  10. bool? isActive,
  11. DateTime? createdAt,
  12. DateTime? updatedAt,
  13. dynamic hasDefaultPassword,
  14. dynamic imgUrl,
})

Implementation

User({
  this.uid,
  this.email,
  this.firstName,
  this.lastName,
  this.phone,
  this.countryCode,
  this.country,
  this.password,
  this.role,
  this.isActive,
  this.createdAt,
  this.updatedAt,
  this.hasDefaultPassword,
  this.imgUrl,
});