operatingSystem property

SentryOperatingSystem? operatingSystem

Describes the operating system on which the event was created.

In web contexts, this is the operating system of the browse (normally pulled from the User-Agent string).

Implementation

SentryOperatingSystem? get operatingSystem =>
    this[SentryOperatingSystem.type];
void operatingSystem=(SentryOperatingSystem? operatingSystem)

Implementation

set operatingSystem(SentryOperatingSystem? operatingSystem) =>
    this[SentryOperatingSystem.type] = operatingSystem;