copyWith method
Implementation
CreateStoryAlbum copyWith({
int? storyPosterChatId,
String? name,
List<int>? storyIds,
}) => CreateStoryAlbum(
storyPosterChatId: storyPosterChatId ?? this.storyPosterChatId,
name: name ?? this.name,
storyIds: storyIds ?? this.storyIds,
);