isEmpty function Null safety
- String pathToDirectory
Returns true if the passed pathToDirectory
is an
empty directory.
For large directories this operation can be expensive.
Implementation
bool isEmpty(String pathToDirectory) =>
waitForEx(core.isEmpty(pathToDirectory));