Agent constructor

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

Implementation

Agent(
    {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,
    this.subscriber});