fileNotExists static method

Future<bool> fileNotExists(
  1. String path
)

Implementation

static Future<bool> fileNotExists(String path) async {
  bool exists = await File(path).exists();
  return !exists;
}