Convert Uri to file
@override Future<File> toFile(String uriString) async { Uri uri = Uri.parse(uriString); return File.fromUri(uri); }