layoutFlags1 property

int layoutFlags1
inherited

Second BitFlags for layout styles.

Implementation

int get layoutFlags1 => _layoutFlags1;
void layoutFlags1=(int value)
inherited

Change the _layoutFlags1 field value. layoutFlags1Changed will be invoked only if the field's value has changed.

Implementation

set layoutFlags1(int value) {
  if (_layoutFlags1 == value) {
    return;
  }
  int from = _layoutFlags1;
  _layoutFlags1 = value;
  if (hasValidated) {
    layoutFlags1Changed(from, value);
  }
}