index property

num index

This read-only property returns which row or column this RowColumnDefinition describes in the #panel. The value is a zero-based integer.

Implementation

_i2.num get index => _i4.getProperty(
      this,
      'index',
    );
void index=(num value)

Implementation

set index(_i2.num value) {
  _i4.setProperty(
    this,
    'index',
    value,
  );
}