showPerformanceOverlay property

bool? showPerformanceOverlay

If true, it turns on a performance overlay.

Implementation

bool? get showPerformanceOverlay => appState?.showPerformanceOverlay;
void showPerformanceOverlay=(bool? v)

Implementation

set showPerformanceOverlay(bool? v) {
  if (v != null) {
    appState?.showPerformanceOverlay = v;
  }
}