crc32_checksum 0.0.1 crc32_checksum: ^0.0.1 copied to clipboard
A new Flutter package that calculate crc32 checksum value for given string.
The crc32_checksum library requires string input to calculate checksum.
to know more about crc 32 Please check given wikipedia link :- https://en.wikipedia.org/wiki/Cyclic_redundancy_check
###Usage Call the calculate function to convert string value into checksum value: String inputValue = "Please add here your input String value"; var checkSumResult = Crc32.calculate(inputValue);