retriveRawFileInfo method
Returns information about a specific file as Map
Implementation
Future<Map<String, dynamic>> retriveRawFileInfo(
{required String fileId}) async {
try {
_checkApi(values: [fileId]);
final result = await service.retriveFile(fileId: fileId, apiKey: _apiKey);
return result.toMap();
} catch (e) {
throw _exceptionCheck(e);
}
}