entityExists function
Implementation
Future<bool> entityExists(FileSystemEntity entity) async {
return (FileSystemEntity.typeSync(entity.path)) !=
FileSystemEntityType.notFound;
}
Future<bool> entityExists(FileSystemEntity entity) async {
return (FileSystemEntity.typeSync(entity.path)) !=
FileSystemEntityType.notFound;
}