action property

RuleAction get action

The action to take if this rule is matched.

Implementation

RuleAction get action => RuleAction.fromJS(_wrapped.action);
set action (RuleAction v)

Implementation

set action(RuleAction v) {
  _wrapped.action = v.toJS;
}