debugRepaintRainbowEnabled property

bool? debugRepaintRainbowEnabled

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

Implementation

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

Implementation

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