copyWith method

GetStoryAlbumStories copyWith({
  1. int? chatId,
  2. int? storyAlbumId,
  3. int? offset,
  4. int? limit,
})

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,
);