checkerboardOffscreenLayers property

  1. @Deprecated('Should not be an exposed property')
bool? get checkerboardOffscreenLayers

Checkerboard layers rendered offscreen bitmaps.

Implementation

@Deprecated('Should not be an exposed property')
bool? get checkerboardOffscreenLayers =>
    appState?.checkerboardOffscreenLayers;
  1. @Deprecated('Should not be a readily available capability')
set checkerboardOffscreenLayers (bool? v)

Implementation

@Deprecated('Should not be a readily available capability')
set checkerboardOffscreenLayers(bool? v) {
  if (v != null) {
    appState?.checkerboardOffscreenLayers = v;
  }
}