copyWith method

CreateStoryAlbum copyWith({
  1. int? storyPosterChatId,
  2. String? name,
  3. List<int>? storyIds,
})

Implementation

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