messagepack icon indicating copy to clipboard operation
messagepack copied to clipboard

Streaming API implementation of MessagePack binary serialization format for Dart

Results 5 messagepack issues
Sort by recently updated
recently updated
newest added

Also adds a test demonstrating how one might pack/unpack a recursive data structure. Looks like this could close issue #6 as well. (I wasn't the only one who wanted to...

Thank you for providing this useful package. Would you mind adding a `packUint8List` and `unpackUint8List` method? The reason for this being, that `Uint8List` is often used in Dart and Flutter...

Take the ```unpackInt``` as example: ```dart if (b = 0xe0) { /// Int value in fixnum range [-32..127] encoded in header 1 byte v = _d.getInt8(_offset); _offset += 1; }...

Using dart's dynamic keywords, I wrote up a function which uses the rest of the pack() functions within the packer class. I was using this library on one of my...