showSemanticsDebugger property

  1. @Deprecated('Should not be an exposed property')
bool get showSemanticsDebugger
inherited

Implementation

@Deprecated('Should not be an exposed property')
bool get showSemanticsDebugger =>
    _showSemanticsDebugger ?? onShowSemanticsDebugger() ?? false;
  1. @Deprecated('Should not be a readily available capability')
set showSemanticsDebugger (bool? debug)
inherited

Implementation

@Deprecated('Should not be a readily available capability')
set showSemanticsDebugger(bool? debug) {
  if (debug != null) {
    _showSemanticsDebugger = debug;
  }
}