UserProfilePhotos constructor

const UserProfilePhotos({
  1. required int totalCount,
  2. required List<List<PhotoSize>> photos,
})

Constructs a UserProfilePhotos object

Implementation

const UserProfilePhotos({
  required this.totalCount,
  required this.photos,
});