EventListenerOptions constructor

EventListenerOptions({
  1. bool? capture,
})

Implementation

factory EventListenerOptions({bool? capture}) =>
    EventListenerOptions._(capture: capture ?? false);