rasterize property Null safety
Whether a rasterized version of this render objects child is drawn in place of the child.
Implementation
bool get rasterize => _rasterize;
Implementation
set rasterize(bool value) {
if (value == rasterize) {
return;
}
_rasterize = value;
notifyListeners();
}