logicalConstraints property

  1. @override
BoxConstraints get logicalConstraints
override

The constraints of the output surface in logical pixel.

The constraints are passed to the child of the root render object.

Implementation

@override
BoxConstraints get logicalConstraints =>
    _logicalConstraints ?? parent.logicalConstraints;
set logicalConstraints (BoxConstraints value)

Implementation

set logicalConstraints(BoxConstraints value) {
  _logicalConstraints = value;
}