For automated flows, being able to dynamically access the row fields in a hashmap fashion would be a huge help, and what I can gather from the source, it's certainly can't be impossible?
To be clear, this is what I would like to be able to do:
var res = await connection.query('select * from table');
await for (Row row in res)
print('The fields are ${row.fields}');
// [id, name, other_field]
For automated flows, being able to dynamically access the row fields in a hashmap fashion would be a huge help, and what I can gather from the source, it's certainly can't be impossible?
To be clear, this is what I would like to be able to do: