decodeCbor static method
Decode a CBOR (Concise Binary Object Representation) data stream represented by a List
Implementation
static CborObject decodeCbor(List<int> cborBytes) {
return _decode(cborBytes).item1;
}
Decode a CBOR (Concise Binary Object Representation) data stream represented by a List
static CborObject decodeCbor(List<int> cborBytes) {
return _decode(cborBytes).item1;
}