ManageFiles_ListFiles method

Future<Map> ManageFiles_ListFiles({
  1. int page = 0,
  2. int per_page = 200,
  3. String? folder_id,
  4. String? created,
  5. String? apiKey,
})

List all files

Implementation

Future<Map> ManageFiles_ListFiles({
  int page = 0,
  int per_page = 200,
  String? folder_id,
  String? created,
  String? apiKey,
}) async {
  return await getListFiles(
    page: page,
    per_page: per_page,
    folder_id: folder_id,
    created: created,
    apiKey: apiKey,
  );
}