TransactionResponse constructor

TransactionResponse({
  1. required String hash,
  2. int? blockNumber,
  3. String? blockHash,
  4. int? timestamp,
  5. required int confirmations,
  6. required String from,
  7. String? raw,
})

Implementation

TransactionResponse({
  required this.hash,
  this.blockNumber,
  this.blockHash,
  this.timestamp,
  required this.confirmations,
  required this.from,
  this.raw,
});