ComputeCRC32 method

int ComputeCRC32(
  1. Uint8List data
)

Compute CRC32 hash code

Implementation

int ComputeCRC32(
  Uint8List data,
) => run(
  () => _debugLabels.ComputeCRC32(data),
  () => _flat.ComputeCRC32(
    $.Uint8$.Array(data),
    data.length,
  ),
);