operatingSystem property

SentryOperatingSystem? get 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];
set operatingSystem (SentryOperatingSystem? operatingSystem)

Implementation

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