createDirectory method
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);
});
}