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();
}
Whether the render object will pass its size to the AnnotatedRegionLayer.
bool get sized => _sized;
set sized(bool value) {
if (_sized == value)
return;
_sized = value;
markNeedsPaint();
}