DRepScriptHash.deserialize constructor
DRepScriptHash.deserialize(
- CborListValue<
CborObject< cborObject?> >
Implementation
factory DRepScriptHash.deserialize(CborListValue cbor) {
DRepType.deserialize(
cbor.elementAt<CborIntValue>(0),
validate: DRepType.drepScriptHash,
);
return DRepScriptHash(
ScriptHash.deserialize(cbor.elementAt<CborBytesValue>(1)),
);
}