copyWith method

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

Implementation

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