int xxHash(Uint8List b) { if (b.isEmpty) return -1; //return b.hashCode; final digest = xxHash64.convert(b); return digest.x.toInt(); }