getFilesList method
Retrives the list of stored files as ListFileResponse object.
Implementation
Future<ListFileResponse> getFilesList() async {
try {
_checkApi();
final result = await service.getFileList(apiKey: _apiKey);
return result;
} catch (e) {
throw _exceptionCheck(e);
}
}