checkFolderExistenceAsync static method

Future<bool> checkFolderExistenceAsync({
  1. required String folderPath,
})

Implementation

static Future<bool> checkFolderExistenceAsync({
  required String folderPath,
}) async {
  return await Directory(folderPath).exists();
}