sized property

bool sized

Whether the render object will pass its size to the AnnotatedRegionLayer.

Implementation

bool get sized => _sized;
void sized= (bool value)

Implementation

set sized(bool value) {
  if (_sized == value)
    return;
  _sized = value;
  markNeedsPaint();
}