decode static method

Implementation

static XdrHashIDPreimageContractID decode(XdrDataInputStream stream) {
  XdrHash networkID = XdrHash.decode(stream);
  XdrContractIDPreimage contractIDPreimage = XdrContractIDPreimage.decode(
    stream,
  );
  return XdrHashIDPreimageContractID(networkID, contractIDPreimage);
}