Data constructor

Data({
  1. String? uid,
  2. String? email,
  3. String? firstName,
  4. String? lastName,
  5. String? phone,
  6. String? countryCode,
  7. String? country,
  8. String? photo,
  9. String? userRole,
  10. String? createdAt,
  11. bool? isActive,
  12. bool? isSubAgent,
})

Implementation

Data({
  this.uid,
  this.email,
  this.firstName,
  this.lastName,
  this.phone,
  this.countryCode,
  this.country,
  this.photo,
  this.userRole,
  this.createdAt,
  this.isActive,
  this.isSubAgent,
});