transactionID property

  1. @TagNumber.new(1)
TransactionID get transactionID

The ID for this transaction, which includes the payer's account (the account paying the transaction fee). If two transactions have the same transactionID, they won't both have an effect

Implementation

@$pb.TagNumber(1)
TransactionID get transactionID => $_getN(0);
  1. @TagNumber.new(1)
set transactionID (TransactionID v)

Implementation

@$pb.TagNumber(1)
set transactionID(TransactionID v) {
  setField(1, v);
}