DRepScriptHash.deserialize constructor

DRepScriptHash.deserialize(
  1. CborListValue<CborObject> cbor
)

Implementation

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