copyWith method
Implementation
GetStoryAlbumStories copyWith({
int? chatId,
int? storyAlbumId,
int? offset,
int? limit,
}) => GetStoryAlbumStories(
chatId: chatId ?? this.chatId,
storyAlbumId: storyAlbumId ?? this.storyAlbumId,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);