UUserResponse constructor

UUserResponse({
  1. required String id,
  2. required DateTime createdAt,
  3. required DateTime updatedAt,
  4. required UUserJson jsonData,
  5. required List<int> tags,
  6. required String userName,
  7. String? password,
  8. String? refreshToken,
  9. String? phoneNumber,
  10. String? email,
  11. String? firstName,
  12. String? lastName,
  13. String? bio,
  14. String? country,
  15. String? state,
  16. String? city,
  17. DateTime? birthdate,
  18. List<UCategoryResponse>? categories,
  19. 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,
});