User constructor

User(
  1. {int? id,
  2. String? firstName,
  3. String? lastName,
  4. String? fullName,
  5. String? email,
  6. String? latitude,
  7. String? longitude,
  8. String? address,
  9. String? country,
  10. String? state,
  11. String? city,
  12. String? contactNumber,
  13. String? accountType,
  14. String? userType,
  15. String? dob,
  16. String? gender,
  17. List<int>? businessIds,
  18. List<int>? interestIds,
  19. int? status,
  20. String? timeZone,
  21. dynamic emailVerifiedAt,
  22. dynamic loginType,
  23. dynamic uid,
  24. dynamic socialImage,
  25. dynamic otp,
  26. String? profileImage}
)

Implementation

User({
  this.id,
  this.firstName,
  this.lastName,
  this.fullName,
  this.email,
  this.latitude,
  this.longitude,
  this.address,
  this.country,
  this.state,
  this.city,
  this.contactNumber,
  this.accountType,
  this.userType,
  this.dob,
  this.gender,
  this.businessIds,
  this.interestIds,
  this.status,
  this.timeZone,
  this.emailVerifiedAt,
  this.loginType,
  this.uid,
  this.socialImage,
  this.otp,
  this.profileImage,
});