operator == method

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

Equality is name and meta

Implementation

@override
bool operator ==(Object that) {
  return identical(this, that)
        || that is HCol
        && name == that.name
        && _meta == that.meta;
}