$finalize method
Finalizes the message digest with the remaining message block, and returns the output as byte array.
Implementation
@override
Uint8List $finalize() {
_crc ^= xorOut;
return Uint8List.fromList([
_crc >>> 24,
_crc >>> 16,
_crc >>> 8,
_crc,
]);
}