isEqualToIgnoringOrdering method

bool isEqualToIgnoringOrdering(
  1. List<T> other
)

Implementation

bool isEqualToIgnoringOrdering(List<T> other) =>
    length == other.length &&
    {...this}.intersection({...other}).length == length;