Event
public final class Eventextension Event: CustomDebugStringConvertibleThe Event interface is used to provide information.
- 
                  
                  A structure that defines the name of an event. See moreDeclarationSwift public struct Name : RawRepresentable, ExpressibleByStringLiteral, Sendable
- 
                  
                  Undocumented DeclarationSwift public static func from(_ notification: Notification) -> Event
- 
                  
                  The type represents the event name. DeclarationSwift public fileprivate(set) var type: Name { get }
- 
                  
                  The isBubbles indicates whether ot not an event is a bubbling event. DeclarationSwift public fileprivate(set) var bubbles: Bool { get }
- 
                  
                  The data indicates the to provide information. DeclarationSwift public fileprivate(set) var data: Any? { get }
- 
                  
                  The target indicates the [IEventDispatcher]. DeclarationSwift public fileprivate(set) var target: AnyObject? { get }
- 
                  
                  Creates a new event. DeclarationSwift public init(type: Name, bubbles: Bool = false, data: Any? = nil)
- 
                  
                  DeclarationSwift public var debugDescription: String { get }
