isMatch method

  1. @protected
bool isMatch(
  1. LogicValue value,
  2. LogicValue expressionValue
)

Returns true iff value matches the expressions current value.

Implementation

@protected
bool isMatch(LogicValue value, LogicValue expressionValue) =>
    expressionValue == value;