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