Expression constructor

Expression({
  1. required Operator operator,
  2. required Computable leftHand,
  3. required Computable rightHand,
})

Creates the expression.

Implementation

Expression(
    {required this.operator,
    required this.leftHand,
    required this.rightHand});