decorationweight property
double?
get
decorationweight
Implementation
double? get decorationweight => _decorationweight?.get();
set
decorationweight
(dynamic v)
Implementation
set decorationweight(dynamic v) {
if (_decorationweight != null) {
_decorationweight!.set(v);
} else if (v != null) {
_decorationweight = DoubleObservable(
Binding.toKey(id, 'decorationweight'), v,
scope: scope, listener: onPropertyChange);
}
}