ProtocolParamUpdate.fromCborBytes constructor

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

Implementation

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