COSESignatures.deserialize constructor
COSESignatures.deserialize(
- CborIterableObject<
Iterable> cbor
Implementation
factory COSESignatures.deserialize(CborIterableObject cbor) {
return COSESignatures(
signatures: cbor
.valueAsListOf<CborListValue>()
.map((e) => COSESignature.deserialize(e))
.toList(),
serializationConfig: COSESerializationConfig(encoding: cbor.encoding));
}