copyWith method

SetForumTopicNotificationSettings copyWith({
  1. int? chatId,
  2. int? forumTopicId,
  3. ChatNotificationSettings? notificationSettings,
})

Implementation

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