MsgTx constructor
MsgTx({
- TxMsgType? msgType,
- List<
int> ? txid, - TxFinalizationReason? finalizationReason,
Implementation
factory MsgTx({
TxMsgType? msgType,
$core.List<$core.int>? txid,
TxFinalizationReason? finalizationReason,
}) {
final result = create();
if (msgType != null) result.msgType = msgType;
if (txid != null) result.txid = txid;
if (finalizationReason != null)
result.finalizationReason = finalizationReason;
return result;
}