getHashCode static method

  1. @Deprecated('Use Object.hashAll instead')
int getHashCode(
  1. Iterable? iterable
)

Returns the hash code of the given list

Implementation

@Deprecated('Use Object.hashAll instead')
static int getHashCode(Iterable? iterable)
=> iterable == null ? 0: Object.hashAll(iterable);