hash2 function

int hash2(
  1. dynamic a,
  2. dynamic b
)

Generates a hash code for two objects.

Implementation

int hash2(a, b) => _finish(_combine(_combine(0, a.hashCode), b.hashCode));