flowChildNode method

dynamic flowChildNode(
  1. dynamic node, [
  2. dynamic output
])

Implementation

flowChildNode(node, [output]) {
  var previousFlow = this.flow;

  var flow = {
    "code": '',
  };

  this.flow = flow;

  flow["result"] = node.build(this, output);

  // print("NodeBuilder.flowChildNode node: ${node} output: ${output} result ${flow["result"]}  ");

  this.flow = previousFlow;

  return flow;
}