debugRepaintRainbowEnabled property
bool?
get
debugRepaintRainbowEnabled
Overlay a rotating set of colors when repainting layers in checked mode.
Implementation
bool? get debugRepaintRainbowEnabled => appState?.debugRepaintRainbowEnabled;
set
debugRepaintRainbowEnabled
(bool? v)
Implementation
set debugRepaintRainbowEnabled(bool? v) {
if (v != null) {
appState?.debugRepaintRainbowEnabled = v;
}
}