BinaryOperator constructor

const BinaryOperator(
  1. String name,
  2. String operator,
  3. int precedence, {
  4. bool associative = false,
})

Implementation

const BinaryOperator(this.name, this.operator, this.precedence,
    {bool associative = false})
    : isAssociative = associative;