showPerformanceOverlay property

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

If true, it turns on a performance overlay.

Implementation

@Deprecated('Should not be an exposed property')
bool? get showPerformanceOverlay => appState?.showPerformanceOverlay;
  1. @Deprecated('Should not be a readily available capability')
set showPerformanceOverlay (bool? v)

Implementation

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