debugRepaintRainbowEnabled property

bool? debugRepaintRainbowEnabled

Overlay a rotating set of colors when repainting layers in checked mode.

Implementation

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

Implementation

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