Operator constructor

const Operator(
  1. String symbol,
  2. num operation(
    1. num,
    2. num
    ), {
  3. bool requiresParentheses = false,
})

Implementation

const Operator(this.symbol, this.operation, {this.requiresParentheses = false});