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