operator == method

  1. @override
bool operator ==(
  1. Object that
)
override

Equality is based on string encoding.

Implementation

@override
bool operator ==(Object that) =>
    (that is HFilter) && toString() == that.toString();