sized property

bool get sized

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

Implementation

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

Implementation

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