sorting property

EnumValue sorting

Gets or sets what order to place the parts. Must be GridLayout.Forward, GridLayout.Reverse, GridLayout.Ascending, or GridLayout.Descending.

The default value is GridLayout.Ascending.

Implementation

_i3.EnumValue get sorting => _i4.getProperty(
      this,
      'sorting',
    );
void sorting=(EnumValue value)

Implementation

set sorting(_i3.EnumValue value) {
  _i4.setProperty(
    this,
    'sorting',
    value,
  );
}