index property

int? get index

Implementation

int? get index {
  if (_index == null) return -1;
  return _index?.get();
}
set index (dynamic v)

Implementation

set index(dynamic v) {
  if (_index != null) {
    _index!.set(v);
  } else if (v != null) {
    _index = IntegerObservable(Binding.toKey(id, 'index'), v, scope: scope);
  }
}