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