Transaction constructor

Transaction({
  1. String? hash,
  2. String? nonce,
  3. String? transactionIndex,
  4. String? fromAddress,
  5. String? toAddress,
  6. String? value,
  7. String? gas,
  8. String? gasPrice,
  9. String? input,
  10. String? receiptCumulativeGasUsed,
  11. String? receiptGasUsed,
  12. String? receiptContractAddress,
  13. String? receiptRoot,
  14. String? receiptStatus,
  15. String? blockTimestamp,
  16. String? blockNumber,
  17. String? blockHash,
  18. List<int>? transferIndex,
  19. String? toAddressLabel,
})

Implementation

Transaction({
  this.hash,
  this.nonce,
  this.transactionIndex,
  this.fromAddress,
  this.toAddress,
  this.value,
  this.gas,
  this.gasPrice,
  this.input,
  this.receiptCumulativeGasUsed,
  this.receiptGasUsed,
  this.receiptContractAddress,
  this.receiptRoot,
  this.receiptStatus,
  this.blockTimestamp,
  this.blockNumber,
  this.blockHash,
  this.transferIndex,
  this.toAddressLabel,
});