Log constructor

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

Implementation

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