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