getRawFilesList method

Future<Map<String, dynamic>> getRawFilesList()

Retrives the list of stored files as Map.

Implementation

Future<Map<String, dynamic>> getRawFilesList() async {
  try {
    _checkApi();
    final result = await service.getFileList(apiKey: _apiKey);
    return result.toMap();
  } catch (e) {
    throw _exceptionCheck(e);
  }
}