action property
String?
get
action
Implementation
String? get action => _action?.get();
set
action
(dynamic v)
Implementation
set action(dynamic v) {
if (_action != null) {
_action!.set(v);
} else if (v != null) {
_action = StringObservable(Binding.toKey(id, 'action'), v,
scope: scope, lazyEval: true);
}
}