Typed data over a MessageBox? Typed data over a MessageBox? dart dart

Typed data over a MessageBox?


A couple possibilities:

  1. Does sending a typed data list work? The VM should be able to transfer typed data lists between isolates. Not sure how dart2js handles things.
  2. Take your binary data and base64 encode it into a String for transmission. This will be slightly less compact than pure binary data (1.2x space increase) but will work.

John