Expression constructor
Expression({
- required Operator operator,
- required Computable leftHand,
- required Computable rightHand,
Creates the expression.
Implementation
Expression(
{required this.operator,
required this.leftHand,
required this.rightHand});