hashCode property - Pointer class - dart:ffi library (original) (raw)
int gethashCode
override
The hash code for a Pointer only depends on its address.
Implementation
int get hashCode {
return address.hashCode;
}
int gethashCode
override
The hash code for a Pointer only depends on its address.
int get hashCode {
return address.hashCode;
}