MathOperatorDivision constructor

const MathOperatorDivision(
  1. MathNode left,
  2. MathNode right
)

Creates division operator

Implementation

const MathOperatorDivision(MathNode left, MathNode right)
    : super(left, right);