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