In that plugin, the voicemail audio URL is attached to a Task's attributes. According to the TaskRouter documentation on the lifecycle of a Task, once a Task has reached a terminal state (canceled or completed) it is deleted 5 minutes later).
So, you cannot retrieve the voicemail URL from the task.
Call recordings are available through the Twilio REST API though. If you wanted to build a page in Flex that listed the call recordings that have been left as part of this workflow, you could, for example, fetch the recordings from the API (using a Twilio Function) and render them into the Flex page.
That will give you the recordings without any metadata though. If you need to store the metadata further, you will likely need to dig further into the queued callbacks and voicemail plugin to find somewhere to store the data in your own permanent store.