deepHash function

int deepHash(
  1. Object? o
)

Returns the hash code of o.

Nested objects such as Map and List can also be compared.

oのハッシュコードを返します。

MapListなどのネストされたオブジェクトも比較可能です。

Implementation

int deepHash(Object? o) {
  return const DeepCollectionEquality().hash(o);
}