Instance Property
presenter
The presenter owned by this interactor.
nonisolated var presenter: Self.PresenterType { get }
Mentioned In
Discussion
nonisolated so it can be passed to a router or queried by a non-actor caller without hopping into the actor’s executor. The presenter itself is typically @MainActor, so individual method calls on it must be await-ed from the interactor.