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