QueryOracleRequest.deserialize constructor
Implementation
factory QueryOracleRequest.deserialize(List<int> bytes) {
final decode = CosmosProtoMessage.decode(bytes, protoConfigStatic());
return QueryOracleRequest(chainId: decode.getString<String?>(1));
}