QueryOraclePriceResponse.deserialize constructor
Implementation
factory QueryOraclePriceResponse.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryOraclePriceResponse(
pricePairState: decode.messageTo<PricePairState?>(
1,
(b) => PricePairState.deserialize(b),
),
);
}