LogEntry constructor

const LogEntry({
  1. required String address,
  2. required String blockHash,
  3. required int blockNumber,
  4. required String data,
  5. required int logIndex,
  6. required bool removed,
  7. required List<String> topics,
  8. required String transactionHash,
  9. required int transactionIndex,
})

Creates a new instance of the LogEntry class.

Implementation

const LogEntry({
  required this.address,
  required this.blockHash,
  required this.blockNumber,
  required this.data,
  required this.logIndex,
  required this.removed,
  required this.topics,
  required this.transactionHash,
  required this.transactionIndex,
});