index property

int get index

Implementation

int get index => _index;
set index (int value)

Implementation

set index(int value) {
  if (_index != value) {
    // TODO(VijayakumarM): Add assertion.
    _index = value;
  }
}