Log constructor

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

Implementation

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