ComputeCRC32 method
Compute CRC32 hash code
Implementation
@override
int ComputeCRC32(
Uint8List data,
) => run(
() => RaylibDebugLabels.ComputeCRC32(data),
() => rl.Core.ComputeCRC32(
rl.Temp.Uint8$.Array(data).cast(),
data.length,
),
);