MathOperatorMultiplication constructor

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

Creates multiplication operator

Implementation

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