isEmpty property
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;
}
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;
}