getListFiles method
List all files
Implementation
Future<Map> getListFiles({
int page = 0,
int per_page = 200,
String? folder_id,
String? created,
String? apiKey,
}) async {
Map result = await invoke(
uriPath: "file/list",
uriQueryParameters: {
"page": "${page}",
"per_page": "${per_page}",
"fld_id": folder_id,
"created": created,
},
apiKey: apiKey,
statusCodes: [200],
specialTypeName: "uploadRemoteUrl",
);
return result;
}