useIntrinsicSize property
Implementation
bool get useIntrinsicSize => _useIntrinsicSize;
Implementation
set useIntrinsicSize(bool value) {
if (_useIntrinsicSize == value) {
return;
}
_useIntrinsicSize = value;
if (parent != null) {
markNeedsLayoutForSizedByParentChange();
}
}