Sign in
fuchsia
/
reference-docs
/
main
/
.
/
f8
/
sdk
/
dart
/
package-fuchsia_vfs_vfs
/
PseudoDir
/
isEmpty.md
blob: 3654bc2c84c0ddfce03fedbbb2006f8878fc06af [
file
] [
log
] [
blame
] [
view
]
# isEmpty method
*[<
Null
safety
>](
https
:
//dart.dev/null-safety)*
bool
isEmpty
()
<p>
Checks
if
directory
is
empty
.</
p
>
## Implementation
```dart
bool isEmpty() {
return _entries.isEmpty;
}
```