factory GetXmrTxsReply({ $core.Iterable<XmrTx>? txs, }) { final $result = create(); if (txs != null) { $result.txs.addAll(txs); } return $result; }