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