copyWith method
SetForumTopicNotificationSettings
copyWith({
- int? chatId,
- int? forumTopicId,
- ChatNotificationSettings? notificationSettings,
Implementation
SetForumTopicNotificationSettings copyWith({
int? chatId,
int? forumTopicId,
ChatNotificationSettings? notificationSettings,
}) => SetForumTopicNotificationSettings(
chatId: chatId ?? this.chatId,
forumTopicId: forumTopicId ?? this.forumTopicId,
notificationSettings: notificationSettings ?? this.notificationSettings,
);