showPerformanceOverlay property
If true, it turns on a performance overlay.
Implementation
@Deprecated('Should not be an exposed property')
bool? get showPerformanceOverlay => appState?.showPerformanceOverlay;
Implementation
@Deprecated('Should not be a readily available capability')
set showPerformanceOverlay(bool? v) {
if (v != null) {
appState?.showPerformanceOverlay = v;
}
}