app property

SentryApp? get app

App context describes the application.

As opposed to the runtime, this is the actual application that was running and carries metadata about the current session.

Implementation

SentryApp? get app => this[SentryApp.type];
set app (SentryApp? app)

Implementation

set app(SentryApp? app) => this[SentryApp.type] = app;