copyWith method

ReorderStoryAlbums copyWith({
  1. int? chatId,
  2. List<int>? storyAlbumIds,
})

Implementation

ReorderStoryAlbums copyWith({int? chatId, List<int>? storyAlbumIds}) =>
    ReorderStoryAlbums(
      chatId: chatId ?? this.chatId,
      storyAlbumIds: storyAlbumIds ?? this.storyAlbumIds,
    );