conditions property

List<Object> get conditions

List of conditions that can trigger the actions.

Implementation

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

Implementation

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