MathNode constructor
MathNode(
- dynamic method,
- dynamic aNode, [
- dynamic bNode = null,
- dynamic cNode = null,
Implementation
MathNode(method, aNode, [bNode = null, cNode = null]) : super() {
this.method = method;
this.aNode = aNode;
this.bNode = bNode;
this.cNode = cNode;
}