chatEventHasProtectedContentToggled property

ChatEventHasProtectedContentToggled? chatEventHasProtectedContentToggled

The has_protected_content setting of a channel was toggled

Implementation

ChatEventHasProtectedContentToggled? get chatEventHasProtectedContentToggled {
  if (this is ChatEventHasProtectedContentToggled) {
    return this as ChatEventHasProtectedContentToggled;
  }
  return null;
}