equalsTo method

bool equalsTo(
  1. Map<K, V>? others
)

Returns true if the internals of Map and others are compared and match.

Returns true if both itself and others are null.

Mapothersの内部を比較して一致している場合trueを返します。

自身とothersが両方ともNullな場合trueを返します。

Implementation

bool equalsTo(Map<K, V>? others) {
  return deepEquals(this, others);
}