showPerformanceOverlay property

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

Implementation

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

Implementation

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