UserData constructor

UserData(
  1. {int? id,
  2. String? firstName,
  3. String? lastName,
  4. String? fullName,
  5. String? updatedAt,
  6. String? displayName,
  7. String? userName,
  8. String? homeTown,
  9. String? email,
  10. String? latitude,
  11. String? longitude,
  12. String? address,
  13. String? country,
  14. String? state,
  15. String? city,
  16. String? contactNumber,
  17. String? accountType,
  18. String? userType,
  19. List<int>? businessIds,
  20. List<int>? interestIds,
  21. List<int>? musicTypeIds,
  22. int? status,
  23. String? timeZone,
  24. String? lastNotificationSeen,
  25. String? emailVerifiedAt,
  26. String? loginType,
  27. String? uid,
  28. String? socialImage,
  29. String? isOnline,
  30. String? lastOnlineTime,
  31. String? otp,
  32. String? rememberToken,
  33. String? profileImage,
  34. String? dob,
  35. String? apiToken,
  36. String? password,
  37. String? passwordConfirmation,
  38. String? aboutMe,
  39. String? gender,
  40. String? relationShipStatus,
  41. int? followers,
  42. int? following,
  43. int? totalReview,
  44. String? createdAt,
  45. String? isPrivateAccount,
  46. String? hideFromSearch,
  47. String? hideEvents,
  48. String? msgOff,
  49. SocialMediaUrl? socialMediaUrl,
  50. bool? isProUser,
  51. int? totalClaimBusiness,
  52. bool? completeProfile}
)

Implementation

UserData(
    {this.id,
    this.firstName,
    this.lastName,
    this.fullName,
    this.updatedAt,
    this.displayName,
    this.userName,
    this.homeTown,
    this.email,
    this.latitude,
    this.longitude,
    this.address,
    this.country,
    this.state,
    this.city,
    this.contactNumber,
    this.accountType,
    this.userType,
    this.businessIds,
    this.interestIds,
    this.musicTypeIds,
    this.status,
    this.timeZone,
    this.lastNotificationSeen,
    this.emailVerifiedAt,
    this.loginType,
    this.uid,
    this.socialImage,
    this.isOnline,
    this.lastOnlineTime,
    this.otp,
    this.rememberToken,
    this.profileImage,
    this.dob,
    this.apiToken,
    this.password,
    this.passwordConfirmation,
    this.aboutMe,
    this.gender,
    this.relationShipStatus,
    this.followers,
    this.following,
    this.totalReview,
    this.createdAt,
    this.isPrivateAccount,
    this.hideFromSearch,
    this.hideEvents,
    this.msgOff,
    this.socialMediaUrl,
    this.isProUser,
    this.totalClaimBusiness,
    this.completeProfile});