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