Convert Blob to <int> List
I use protocol buffers in a dart , but have a problem due to the way I get data from a web socket connection. Binary data is accepted as Blob
, and the protobuf message constructor expects List<int>
. How do I go about converting Blob
to List<int>
?
+4