UserProfileModel constructor

UserProfileModel({
  1. int? id,
  2. String? userId,
  3. String? gender,
  4. int? heightCm,
  5. double? weightKg,
  6. int? bustCm,
  7. int? waistCm,
  8. int? hipsCm,
  9. String? fitPreference,
  10. List<String>? stylePreferenceTags,
  11. List<String>? colorPreferenceTags,
  12. String? avoidElements,
  13. Map<String, dynamic>? userProfileData,
  14. String? sceneTag,
  15. double? bmi,
  16. double? waistHipRatio,
  17. String? createdAt,
  18. String? updatedAt,
})

Implementation

UserProfileModel({
  this.id,
  this.userId,
  this.gender,
  this.heightCm,
  this.weightKg,
  this.bustCm,
  this.waistCm,
  this.hipsCm,
  this.fitPreference,
  this.stylePreferenceTags,
  this.colorPreferenceTags,
  this.avoidElements,
  this.userProfileData,
  this.sceneTag,
  this.bmi,
  this.waistHipRatio,
  this.createdAt,
  this.updatedAt,
});