MIR.fromCborBytes constructor

MIR.fromCborBytes(
  1. List<int> cborBytes
)

Constructs a MIR object from its CBOR byte representation.

Implementation

factory MIR.fromCborBytes(List<int> cborBytes) {
  return MIR.deserialize(CborObject.fromCbor(cborBytes));
}