layoutFlags0 property

int layoutFlags0
inherited

First BitFlags for layout styles.

Implementation

int get layoutFlags0 => _layoutFlags0;
void layoutFlags0=(int value)
inherited

Change the _layoutFlags0 field value. layoutFlags0Changed will be invoked only if the field's value has changed.

Implementation

set layoutFlags0(int value) {
  if (_layoutFlags0 == value) {
    return;
  }
  int from = _layoutFlags0;
  _layoutFlags0 = value;
  if (hasValidated) {
    layoutFlags0Changed(from, value);
  }
}