directoryExists method

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

Returns whether a directory exists at path.

Implementation

@override
bool directoryExists(String path) => Directory(path).existsSync();