GetUserProfilePhotos constructor

const GetUserProfilePhotos({
  1. required int userId,
  2. required int offset,
  3. required int limit,
})

Returns the profile photos of a user. Personal and public photo aren't returned

Implementation

const GetUserProfilePhotos({
  required this.userId,
  required this.offset,
  required this.limit,
});