QuerySmartContractStateResponse.deserialize constructor
Implementation
factory QuerySmartContractStateResponse.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QuerySmartContractStateResponse(
data: decode.getBytes<List<int>?>(1),
);
}