hashCode property

  1. @override
int get hashCode
override

Returns the hash code for this field.

The hash code is computed from the fieldName and rawValue, ensuring that fields with the same name and value produce the same hash code. This is consistent with the operator == implementation.

Returns: A hash code value for this field.

Implementation

@override
int get hashCode => Object.hash(fieldName, rawValue);