filesNotExists static method

Future<bool> filesNotExists(
  1. List<String> paths
)

Implementation

static Future<bool> filesNotExists(List<String> paths) async {
  for (String path in paths) {
    if (await File(path).exists()) {
      return false;
    }
  }
  return true;
}