prevTxnId property

String prevTxnId

Returns the transaction Id of the transaction that this input is spending from

Implementation

String get prevTxnId => _prevTxnId ??= "";
void prevTxnId=(String value)

Sets the transaction Id of the transaction that this input is spending from

Implementation

set prevTxnId(String value) {
    _prevTxnId = value;
}