FilterEvent constructor

FilterEvent({
  1. bool? removed,
  2. int? logIndex,
  3. int? transactionIndex,
  4. String? transactionHash,
  5. String? blockHash,
  6. int? blockNum,
  7. EthereumAddress? address,
  8. String? data,
  9. List<String?>? topics,
})

Implementation

FilterEvent({
  this.removed,
  this.logIndex,
  this.transactionIndex,
  this.transactionHash,
  this.blockHash,
  this.blockNum,
  this.address,
  this.data,
  this.topics,
});