GetUserProfilePhotos constructor

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

Returns the profile photos of a user. The result of this query may be outdated: some photos might have been deleted already

Implementation

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