Binary constructor

Binary(
  1. String name,
  2. Expression left,
  3. Expression right,
  4. num function(
    1. num left,
    2. num right
    ),
)

Implementation

Binary(this.name, this.left, this.right, this.function);