copyWith method

GetUserProfilePhotos copyWith({
  1. int? userId,
  2. int? offset,
  3. int? limit,
})

Implementation

GetUserProfilePhotos copyWith({
  int? userId,
  int? offset,
  int? limit,
}) => GetUserProfilePhotos(
  userId: userId ?? this.userId,
  offset: offset ?? this.offset,
  limit: limit ?? this.limit,
);