execute method

Future<void> execute(
  1. FlowContext context
)

Implementation

Future<void> execute(FlowContext context) async {
  for (final node in _nodes) {
    await node.execute(context);
  }
}