index property

int index

Implementation

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

Implementation

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