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