Log constructor

const Log({
  1. String? address,
  2. List<String> topics = const [],
  3. List<int>? data,
  4. BigInt? blockNumber,
  5. String? txHash,
  6. BigInt? txIndex,
  7. String? blockHash,
  8. BigInt? index,
  9. bool? removed,
})

Implementation

const Log({
  this.address,
  this.topics = const [],
  this.data,
  this.blockNumber,
  this.txHash,
  this.txIndex,
  this.blockHash,
  this.index,
  this.removed,
});