TxInfo constructor

const TxInfo({
  1. required String txid,
  2. int? blockHeight,
  3. String? blockHash,
  4. BigInt? fee,
  5. Uint8List? rawTx,
  6. int? timestamp,
})

Implementation

const TxInfo({
  required this.txid,
  this.blockHeight,
  this.blockHash,
  this.fee,
  this.rawTx,
  this.timestamp,
});