Contexts constructor

Contexts({
  1. SentryDevice? device,
  2. SentryOperatingSystem? operatingSystem,
  3. List<SentryRuntime>? runtimes,
  4. SentryApp? app,
  5. SentryBrowser? browser,
  6. SentryGpu? gpu,
  7. SentryCulture? culture,
  8. SentryTraceContext? trace,
  9. SentryResponse? response,
})

Implementation

Contexts({
  SentryDevice? device,
  SentryOperatingSystem? operatingSystem,
  List<SentryRuntime>? runtimes,
  SentryApp? app,
  SentryBrowser? browser,
  SentryGpu? gpu,
  SentryCulture? culture,
  SentryTraceContext? trace,
  SentryResponse? response,
}) : super({
        SentryDevice.type: device,
        SentryOperatingSystem.type: operatingSystem,
        SentryRuntime.listType: runtimes ?? [],
        SentryApp.type: app,
        SentryBrowser.type: browser,
        SentryGpu.type: gpu,
        SentryCulture.type: culture,
        SentryTraceContext.type: trace,
        SentryResponse.type: response,
      });