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