createDirectory method

  1. @override
Future<void> createDirectory(
  1. String path
)
override

Creates a new directory at the specified path.

Implementation

@override
Future<void> createDirectory(String path) {
  return _executeRequest(() async {
    // This helper finds the folder and creates it if it doesn't exist.
    await _getOrCreateFolder(path);
  });
}