copyWith method

RemoveStoryAlbumStories copyWith({
  1. int? chatId,
  2. int? storyAlbumId,
  3. List<int>? storyIds,
})

Implementation

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