AddEventListenerOptions constructor
      
      AddEventListenerOptions({ 
    
    
- bool? passive,
- bool? once,
- AbortSignal? signal,
Implementation
factory AddEventListenerOptions(
        {bool? passive, bool? once, AbortSignal? signal}) =>
    AddEventListenerOptions._(
        passive: passive ?? undefined,
        once: once ?? false,
        signal: signal ?? undefined);