copyWith method

  1. @override
UpdateChatHasProtectedContent copyWith({
  1. int? chatId,
  2. bool? hasProtectedContent,
  3. dynamic extra,
  4. int? clientId,
})
override

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,
);