TransactionReceipt constructor

TransactionReceipt({
  1. required String transactionHash,
  2. required int transactionIndex,
  3. required String blockHash,
  4. required BigInt blockNumber,
  5. required String from,
  6. required BigInt cumulativeGasUsed,
  7. required BigInt gasUsed,
  8. required List<Log> logs,
  9. required int status,
  10. String? to,
  11. String? contractAddress,
  12. BigInt? effectiveGasPrice,
})

Implementation

TransactionReceipt({
  required this.transactionHash,
  required this.transactionIndex,
  required this.blockHash,
  required this.blockNumber,
  required this.from,
  required this.cumulativeGasUsed,
  required this.gasUsed,
  required this.logs,
  required this.status,
  this.to,
  this.contractAddress,
  this.effectiveGasPrice,
});