TransactionReceipt constructor

TransactionReceipt({
  1. required String to,
  2. required String from,
  3. required String contractAddress,
  4. required int transactionIndex,
  5. String? root,
  6. required BigInt gasUsed,
  7. required String logsBloom,
  8. required String blockHash,
  9. required String transactionHash,
  10. required List<Log> logs,
  11. required int blockNumber,
  12. required int confirmations,
  13. required BigInt cumulativeGasUsed,
  14. required BigInt effectiveGasPrice,
  15. required bool byzantium,
  16. required num type,
  17. num? status,
})

Implementation

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