Contexts constructor
Contexts({
- SentryDevice? device,
- SentryOperatingSystem? operatingSystem,
- List<
SentryRuntime> ? runtimes, - SentryApp? app,
- SentryBrowser? browser,
- SentryGpu? gpu,
- SentryCulture? culture,
- SentryTraceContext? trace,
- SentryResponse? response,
- SentryFeedback? feedback,
Implementation
Contexts({
SentryDevice? device,
SentryOperatingSystem? operatingSystem,
List<SentryRuntime>? runtimes,
SentryApp? app,
SentryBrowser? browser,
SentryGpu? gpu,
SentryCulture? culture,
SentryTraceContext? trace,
SentryResponse? response,
SentryFeedback? feedback,
}) : 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,
SentryFeedback.type: feedback,
});