ascending property
bool
get
ascending
Implementation
bool get ascending => _ascending?.get() ?? true;
set
ascending
(dynamic v)
Implementation
set ascending(dynamic v) {
if (_ascending != null) {
_ascending!.set(v);
} else if (v != null) {
_ascending = BooleanObservable(Binding.toKey(id, 'ascending'), v,
scope: scope, listener: onPropertyChange);
}
}