I've been able to save heap snapshots from a running Flutter application to CSV within the devtools. I can also save a memory heap snapshot programmatically from my Flutter application with NativeRuntime.writeHeapSnapshotToFile.
How do I convert the saved heap snapshot to csv or other human readable form? I'd like to parse the saved snapshot instead of viewing it in the devtools UI. Thanks