showPerformanceOverlay property

bool? get showPerformanceOverlay

If true, it turns on a performance overlay.

Implementation

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

Implementation

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