TransactionDetails class

A wallet transaction

Available Extensions

Constructors

TransactionDetails({String? serializedTx, required String txid, required int received, required int sent, int? fee, BlockTime? confirmationTime})
const

Properties

confirmationTime BlockTime?
If the transaction is confirmed, contains height and timestamp of the block containing the transaction, unconfirmed transaction contains None.
final
fee int?
Fee value (sats) if confirmed. The availability of the fee depends on the backend. It's never None with an Electrum Server backend, but it could be None with a Bitcoin RPC node without txindex that receive funds while offline.
final
hashCode int
The hash code for this object.
no setterinherited
received int
Received value (sats) Sum of owned outputs of this transaction.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
sent int
Sent value (sats) Sum of owned inputs of this transaction.
final
serializedTx String?
final
txid String
Transaction id.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited