sorting property

EnumValue get sorting

Gets or sets whether and in what order the children should be sorted.

The default value is TreeLayout.SortingForwards.

This inherited property is initialized in the TreeLayout#initializeTreeVertexValues pass.

Implementation

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

Implementation

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