ManageFolders_ListFolderAndFiles method
List all folders
Implementation
Future<Map> ManageFolders_ListFolderAndFiles({
String? folder_id,
bool? only_folders,
String? apiKey,
}) async {
return await getListFolderAndFiles(
folder_id: folder_id,
only_folders: only_folders,
apiKey: apiKey,
);
}