EventFilter constructor

EventFilter({
  1. int? limit,
  2. List<String>? notSenders,
  3. List<String>? notTypes,
  4. List<String>? senders,
  5. List<String>? types,
})

Implementation

EventFilter({
  this.limit,
  this.notSenders,
  this.notTypes,
  this.senders,
  this.types,
});