copyWith method

  1. @override
ChatEventHasProtectedContentToggled copyWith({
  1. bool? hasProtectedContent,
})
override

Implementation

@override
ChatEventHasProtectedContentToggled copyWith({
  bool? hasProtectedContent,
}) =>
    ChatEventHasProtectedContentToggled(
      hasProtectedContent: hasProtectedContent ?? this.hasProtectedContent,
    );