theme property

String? get theme

Implementation

String? get theme => _theme?.get();
set theme (dynamic v)

Implementation

set theme(dynamic v) {
  if (_theme != null) {
    _theme!.set(v);
  } else {
    if (v != null) {
      _theme = StringObservable(Binding.toKey(id, 'theme'), v,
          scope: scope, listener: onPropertyChange);
    }
  }
}