layoutFlags2 property

int layoutFlags2
inherited

Third BitFlags for layout styles.

Implementation

int get layoutFlags2 => _layoutFlags2;
void layoutFlags2=(int value)
inherited

Change the _layoutFlags2 field value. layoutFlags2Changed will be invoked only if the field's value has changed.

Implementation

set layoutFlags2(int value) {
  if (_layoutFlags2 == value) {
    return;
  }
  int from = _layoutFlags2;
  _layoutFlags2 = value;
  if (hasValidated) {
    layoutFlags2Changed(from, value);
  }
}