ManageFolders_ListFolderAndFiles method

Future<Map> ManageFolders_ListFolderAndFiles({
  1. String? folder_id,
  2. bool? only_folders,
  3. String? apiKey,
})

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,
  );
}