MathNode constructor

MathNode(
  1. dynamic method,
  2. dynamic aNode, [
  3. dynamic bNode = null,
  4. dynamic cNode = null,
])

Implementation

MathNode(method, aNode, [bNode = null, cNode = null]) : super() {
  this.method = method;

  this.aNode = aNode;
  this.bNode = bNode;
  this.cNode = cNode;
}