AgentData constructor

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

Implementation

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