getDartHash static method

int getDartHash(
  1. Object? obj
)

Implementation

static int getDartHash(Object? obj) {
  return obj?.hashCode ?? 0;
}