hasLayoutExtent property
bool
get
hasLayoutExtent
Implementation
bool get hasLayoutExtent => _hasLayoutExtent;
set
hasLayoutExtent
(bool value)
Implementation
set hasLayoutExtent(bool value) {
if (value == _hasLayoutExtent) return;
if (!value) {
_updateFlag = true;
}
_hasLayoutExtent = value;
markNeedsLayout();
}