md5_file_checksum 1.0.1
md5_file_checksum: ^1.0.1 copied to clipboard
Flutter plugin to calculate a file checksum as MD5 hash, using a platform native implementation.
md5_file_checksum #
A Flutter plugin for getting the MD5 hash of a file. Revamped version of md5_plugin.
Usage #
try {
final fileChecksum = await Md5FileChecksum.getFileChecksum(filePath: filePath);
} catch (exception) {
print('Unable to generate file checksum: $exception');
}