EventSubscriptionEntry constructor

EventSubscriptionEntry({
  1. required bool matchesType(
    1. ApplicationEvent
    ),
  2. required dynamic handler(
    1. ApplicationEvent
    ),
  3. bool passesCriteria(
    1. ApplicationEvent
    )?,
  4. String? scopeId,
})

Implementation

EventSubscriptionEntry(
    {required this.matchesType,
    required this.handler,
    this.passesCriteria,
    this.scopeId});