User constructor

User(
  1. {num? 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. dynamic countryCode,
  13. String? contactNumber,
  14. String? accountType,
  15. String? userType,
  16. String? dob,
  17. String? gender,
  18. dynamic aboutMe,
  19. dynamic relationshipStatus,
  20. List<num>? businessIds,
  21. List<num>? interestIds,
  22. List<num>? musicTypeIds,
  23. num? status,
  24. String? timeZone,
  25. String? createdAt,
  26. dynamic emailVerifiedAt,
  27. dynamic loginType,
  28. dynamic uid,
  29. dynamic socialImage,
  30. dynamic socialMediaUrl,
  31. dynamic otp,
  32. String? profileImage,
  33. String? apiToken,
  34. num? totalReviews,
  35. num? followers,
  36. num? following,
  37. num? totalReview}
)

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.countryCode,
    this.contactNumber,
    this.accountType,
    this.userType,
    this.dob,
    this.gender,
    this.aboutMe,
    this.relationshipStatus,
    this.businessIds,
    this.interestIds,
    this.musicTypeIds,
    this.status,
    this.timeZone,
    this.createdAt,
    this.emailVerifiedAt,
    this.loginType,
    this.uid,
    this.socialImage,
    this.socialMediaUrl,
    this.otp,
    this.profileImage,
    this.apiToken,
    this.totalReviews,
    this.followers,
    this.following,
    this.totalReview,});