TransactionReceipt constructor
TransactionReceipt({
- required String transactionHash,
- required int transactionIndex,
- required String blockHash,
- required BigInt blockNumber,
- required String from,
- required BigInt cumulativeGasUsed,
- required BigInt gasUsed,
- required List<
Log> logs, - required int status,
- String? to,
- String? contractAddress,
- 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,
});