hasEqualProperties method

  1. @override
bool hasEqualProperties(
  1. covariant PredicateParser other
)
override

Compare the properties of two parsers.

Override this method in all subclasses that add new state.

Implementation

@override
bool hasEqualProperties(PredicateParser other) =>
    super.hasEqualProperties(other) &&
    length == other.length &&
    predicate == other.predicate &&
    message == other.message;