showPerformanceOverlay property

bool? showPerformanceOverlay

If true, it turns on a performance overlay.

Implementation

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

Implementation

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