WsSubTxId constructor

WsSubTxId({
  1. String? txid,
})

Implementation

factory WsSubTxId({
  $core.String? txid,
}) {
  final result = create();
  if (txid != null) result.txid = txid;
  return result;
}