hashCode property

  1. @override
int get hashCode
override

Provides a hash code for this quad based on all four components

The hash code combines the hash codes of subject, predicate, object, and graph components to ensure quads with identical components have identical hash codes, enabling proper behavior in hash-based collections.

Returns: A hash code value for this quad.

Implementation

@override
int get hashCode => Object.hash(subject, predicate, object, graphName);