bytesEqual static method
Implementation
static bool bytesEqual(Uint8List? bytes1, Uint8List? bytes2) {
if (identical(bytes1, bytes2)) return true;
if (bytes1 == null || bytes2 == null) return false;
int length = bytes1.length;
if (length != bytes2.length) return false;
for (int i = 0; i < length; i++) {
if (bytes1[i] != bytes2[i]) return false;
}
return true;
}