operator == method

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

Equality is tags

Implementation

@override
bool operator ==(Object other) {
  if (other is HDict) {
    return identical(other, this) || _mapEquality.equals(this, other);
  } else {
    return false;
  }
}