copyWith method

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

Implementation

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