rasterize property Null safety

bool rasterize

Whether a rasterized version of this render objects child is drawn in place of the child.

Implementation

bool get rasterize => _rasterize;
void rasterize=(bool value)

Implementation

set rasterize(bool value) {
  if (value == rasterize) {
    return;
  }
  _rasterize = value;
  notifyListeners();
}