equalsTo method

bool equalsTo(
  1. Iterable<T>? others
)

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

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

Implementation

bool equalsTo(Iterable<T>? others) {
  return deepEquals(this, others);
}