osVersion property

String? osVersion

The device operating system version to attach to telemetry items.

Implementation

String? get osVersion => _contextMap[_osVersionKey] as String?;
void osVersion=(String? value)

Setting will change the device operating system version attached to telemetry items submitted with this context.

This is a convenience for setting the ai.device.osVersion key on TelemetryContext.properties.

Implementation

set osVersion(String? value) => _contextMap.setOrRemove(_osVersionKey, value);