index property
int
get
index
Implementation
int get index => _index?.get() ?? -1;
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);
}
}