UserProfileModel constructor
UserProfileModel({
- int? id,
- String? userId,
- String? gender,
- int? heightCm,
- double? weightKg,
- int? bustCm,
- int? waistCm,
- int? hipsCm,
- String? fitPreference,
- List<
String> ? stylePreferenceTags, - List<
String> ? colorPreferenceTags, - String? avoidElements,
- Map<
String, dynamic> ? userProfileData, - String? sceneTag,
- double? bmi,
- double? waistHipRatio,
- String? createdAt,
- 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,
});