isEmpty property

bool get isEmpty

Implementation

bool get isEmpty {
  if (this is Directory) {
    return (this as Directory).listSync().isEmpty;
  } else if (this is File) {
    return (this as File).lengthSync() == 0;
  }
  return size == 0;
}