TxReceipt constructor

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

Implementation

external factory TxReceipt({
  String? to,
  String from,
  String? contractAddress,
  int transactionIndex,
  String? root,
  BigNumber gasUsed,
  String logsBloom,
  String blockHash,
  String transactionHash,
  List<Log> logs,
  int blockNumber,
  int confirmations,
  BigNumber cumulativeGasUsed,
  bool byzantium,
  int status,
});