getOrganizedResults static method
Convert raw JS engine format to organized arrays for easier processing
Implementation
static Map<String, dynamic> getOrganizedResults(
Map<String, dynamic> rawResult) {
return {
'tags': getOrganizedTags(rawResult),
'variables': getOrganizedVariables(rawResult),
'actions': getOrganizedActions(rawResult),
'metrics': getOrganizedMetrics(rawResult),
};
}