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