sendContentWarningRequest method

void sendContentWarningRequest(
  1. String description,
  2. IconData icon
)

Shows a content warning request

Implementation

void sendContentWarningRequest(String description, IconData icon) {
  _currentObserver != null
      ? _currentObserver!.showContentWarning(description, icon)
      : throwUnregisteredObserverError();
}