QueryEscrowAddressRequest.deserialize constructor

QueryEscrowAddressRequest.deserialize(
  1. List<int> bytes
)

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),
  );
}