hasLayoutExtent property

bool hasLayoutExtent

Implementation

bool get hasLayoutExtent => _hasLayoutExtent;
void hasLayoutExtent=(bool value)

Implementation

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