COSEKey.fromCborBytes constructor

COSEKey.fromCborBytes(
  1. List<int> bytes
)

Implementation

factory COSEKey.fromCborBytes(List<int> bytes) {
  return COSEKey.deserialize(CborObject.fromCbor(bytes).as("COSEKey"));
}