QueryParamsResponse.deserialize constructor
Implementation
factory QueryParamsResponse.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryParamsResponse(
params: decode.messageTo<stratos_pot_v1_pot.Params?>(
1,
(b) => stratos_pot_v1_pot.Params.deserialize(b),
),
);
}