copyWith method
Implementation
ReorderStoryAlbumStories copyWith({
int? chatId,
int? storyAlbumId,
List<int>? storyIds,
}) => ReorderStoryAlbumStories(
chatId: chatId ?? this.chatId,
storyAlbumId: storyAlbumId ?? this.storyAlbumId,
storyIds: storyIds ?? this.storyIds,
);