decodeCbor static method

CborObject decodeCbor(
  1. List<int> cborBytes
)

Decode a CBOR (Concise Binary Object Representation) data stream represented by a List

Implementation

static CborObject decodeCbor(List<int> cborBytes) {
  return _decode(cborBytes).item1;
}