flowChildNode method
dynamic
flowChildNode(
- dynamic node, [
- 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;
}