TransactionReceipt constructor
      const
      TransactionReceipt({ 
    
- required String? blockHash,
- required int? blockNumber,
- String? contractAddress,
- required int? cumulativeGasUsed,
- required int? effectiveGasPrice,
- required String from,
- required int? gasUsed,
- required String logsBloom,
- required bool? status,
- required String? to,
- required String transactionHash,
- required int? transactionIndex,
- required int type,
- required List<LogEntry> logs,
Creates a new instance of the TransactionReceipt class.
Implementation
const TransactionReceipt({
  required this.blockHash,
  required this.blockNumber,
  this.contractAddress,
  required this.cumulativeGasUsed,
  required this.effectiveGasPrice,
  required this.from,
  required this.gasUsed,
  required this.logsBloom,
  required this.status,
  required this.to,
  required this.transactionHash,
  required this.transactionIndex,
  required this.type,
  required this.logs,
});