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