directoryExists method

  1. @override
bool directoryExists(
  1. String path
)
override

Check if a directory exists at the given path.

Implementation

@override
bool directoryExists(String path) {
  return io.Directory(path).existsSync();
}