PublicUserProfileResult constructor

const PublicUserProfileResult({
  1. required PublicUserProfile profile,
  2. List<PublicAppSummary> apps = const [],
  3. List<UserProfileComment> recentComments = const [],
  4. bool hideComments = false,
})

Implementation

const PublicUserProfileResult({
  required this.profile,
  this.apps = const [],
  this.recentComments = const [],
  this.hideComments = false,
});