showPerformanceOverlay property

bool showPerformanceOverlay
inherited

Implementation

bool get showPerformanceOverlay =>
    _showPerformanceOverlay ?? onShowPerformanceOverlay() ?? false;
void showPerformanceOverlay=(bool? debug)
inherited

Implementation

set showPerformanceOverlay(bool? debug) {
  if (debug != null) {
    _showPerformanceOverlay = debug;
  }
}