ExUnitPrices.deserialize constructor

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

Implementation

factory ExUnitPrices.deserialize(CborListValue cbor) {
  return ExUnitPrices(
      memPrice: UnitInterval.deserialize(cbor.elementAt<CborTagValue>(0)),
      stepPrice: UnitInterval.deserialize(cbor.elementAt<CborTagValue>(1)));
}