checkerboardOffscreenLayers property
Whether the compositor should checkerboard layers rendered to offscreen bitmaps.
Implementation
bool get checkerboardOffscreenLayers => _checkerboardOffscreenLayers;Implementation
set checkerboardOffscreenLayers(bool value) {
  assert(value != null);
  if (value == _checkerboardOffscreenLayers)
    return;
  _checkerboardOffscreenLayers = value;
  markNeedsPaint();
}