UUserResponse constructor
UUserResponse({
- required String id,
- required DateTime createdAt,
- required DateTime updatedAt,
- required UUserJson jsonData,
- required List<
int> tags, - required String userName,
- String? password,
- String? refreshToken,
- String? phoneNumber,
- String? email,
- String? firstName,
- String? lastName,
- String? bio,
- String? country,
- String? state,
- String? city,
- DateTime? birthdate,
- List<
UCategoryResponse> ? categories, - List<
UMediaResponse> ? media,
Implementation
UUserResponse({
required this.id,
required this.createdAt,
required this.updatedAt,
required this.jsonData,
required this.tags,
required this.userName,
this.password,
this.refreshToken,
this.phoneNumber,
this.email,
this.firstName,
this.lastName,
this.bio,
this.country,
this.state,
this.city,
this.birthdate,
this.categories,
this.media,
});