fromMsgPack method

T fromMsgPack(
  1. List<int> bytes
)

Implementation

T fromMsgPack(List<int> bytes) {
  return MsgPackDecoder.decode<T>(bytes, this);
}