copyWith method

SetStoryAlbumName copyWith({
  1. int? chatId,
  2. int? storyAlbumId,
  3. String? name,
})

Implementation

SetStoryAlbumName copyWith({int? chatId, int? storyAlbumId, String? name}) =>
    SetStoryAlbumName(
      chatId: chatId ?? this.chatId,
      storyAlbumId: storyAlbumId ?? this.storyAlbumId,
      name: name ?? this.name,
    );