md5Checksum property

Future<String> get md5Checksum

Get the MD5 checksum of the file

Implementation

Future<String> get md5Checksum async {
  var st = openRead();
  final checksum = (await md5.bind(st).first).toString();
  return checksum;
}