scroll property
String?
get
scroll
Implementation
String? get scroll => _scroll?.get();
set
scroll
(dynamic v)
Implementation
set scroll(dynamic v) {
if (_scroll != null) {
_scroll!.set(v);
} else if (v != null) {
_scroll = StringObservable(Binding.toKey(id, 'scroll'), v, scope: scope);
}
}