hashCode property

  1. @override
int hashCode
override

Deep hashCode.

A BuiltList is only equal to another BuiltList with equal elements in the same order. Then, the hashCode is guaranteed to be the same.

Implementation

@override
int get hashCode {
  _hashCode ??= hashObjects(_list);
  return _hashCode!;
}