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