callAsFunction(value:)
Pushes a window defined by a window group that presents the type of the specified value.
Declaration
@MainActor func callAsFunction<D>(value: D) where D : Decodable, D : Encodable, D : HashableParameters
- value:
The value to present.
Discussion
Don’t call this method directly. SwiftUI calls it when you call the pushWindow action with a value:
pushWindow(value: video.id)For information about how Swift uses the callAsFunction() method to simplify call site syntax, see Methods with Special Names in The Swift Programming Language.