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