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