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