execute method

void execute(
  1. Map<String, dynamic> variables
)

执行分支,修改传入的变量上下�?

Implementation

void execute(Map<String, dynamic> variables) {
  if (valueEffects != null) {
    valueEffects!.forEach((key, value) {
      _applyEffect(variables, key, value);
    });
  }
}