copyWith method
Implementation
UpdateChatDefaultDisableNotification copyWith({
int? chatId,
bool? defaultDisableNotification,
}) => UpdateChatDefaultDisableNotification(
chatId: chatId ?? this.chatId,
defaultDisableNotification:
defaultDisableNotification ?? this.defaultDisableNotification,
);