isValidLayout property

bool isValidLayout

Gets or sets whether this layout needs to be performed again (if false). Instead of setting this property directly, it is normal to set it to false by calling #invalidateLayout, since that also requests performing a layout in the near future.

Implementation

_i2.bool get isValidLayout => _i4.getProperty(
      this,
      'isValidLayout',
    );
void isValidLayout=(bool value)

Implementation

set isValidLayout(_i2.bool value) {
  _i4.setProperty(
    this,
    'isValidLayout',
    value,
  );
}