hasEqualProperties method

  1. @override
bool hasEqualProperties(
  1. covariant RepeatingParser<T, R> other
)
override

Compare the properties of two parsers.

Override this method in all subclasses that add new state.

Implementation

@override
bool hasEqualProperties(RepeatingParser<T, R> other) =>
    super.hasEqualProperties(other) && min == other.min && max == other.max;