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