copyWith method

MessageChatHasProtectedContentToggled copyWith({
  1. int? requestMessageId,
  2. bool? oldHasProtectedContent,
  3. bool? newHasProtectedContent,
})

Implementation

MessageChatHasProtectedContentToggled copyWith({
  int? requestMessageId,
  bool? oldHasProtectedContent,
  bool? newHasProtectedContent,
}) => MessageChatHasProtectedContentToggled(
  requestMessageId: requestMessageId ?? this.requestMessageId,
  oldHasProtectedContent:
      oldHasProtectedContent ?? this.oldHasProtectedContent,
  newHasProtectedContent:
      newHasProtectedContent ?? this.newHasProtectedContent,
);