ExUnitPrices.deserialize constructor
ExUnitPrices.deserialize(
- 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)));
}