toMsgPack method

List<int> toMsgPack(
  1. T value
)

Implementation

List<int> toMsgPack(T value) {
  return MsgPackEncoder.encode<T>(value, using: this);
}