constrained property

bool get constrained

Implementation

bool get constrained => _constrained;
set constrained (bool value)

Implementation

set constrained(bool value) {
  if (_constrained == value) {
    return;
  }
  _constrained = value;
  markNeedsLayout();
}