checkDirectoryExist function

Future<bool> checkDirectoryExist(
  1. String path
)

Implementation

Future<bool> checkDirectoryExist(String path) async {
  return Directory(path).exists();
}