actions property

List<Object> get actions

List of actions that are triggered if one of the conditions is fulfilled.

Implementation

List<Object> get actions =>
    _wrapped.actions.toDart.cast<JSAny>().map((e) => e.dartify()!).toList();
set actions (List<Object> v)

Implementation

set actions(List<Object> v) {
  _wrapped.actions = v.toJSArray((e) => e.jsify()!);
}