hashCode property - Pointer class - dart:ffi library (original) (raw)

description

int gethashCode

override

The hash code for a Pointer only depends on its address.

Implementation

int get hashCode {
  return address.hashCode;
}