sized property
Whether the render object will pass its size to the AnnotatedRegionLayer.
Implementation
bool get sized => _sized;
Implementation
set sized(bool value) {
if (_sized == value) {
return;
}
_sized = value;
markNeedsPaint();
}