app property

SentryApp? 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];
void app=(SentryApp? app)

Implementation

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