exists property

bool exists

Implementation

bool get exists {
  if (files.isEmpty) {
    return false;
  } else {
    return files.any((f) => f.existsSync());
  }
}