oemName property

String? oemName

The device OEM name to attach to telemetry items.

Implementation

String? get oemName => _contextMap[_oemNameKey] as String?;
void oemName=(String? value)

Setting will change the device OEM name attached to telemetry items submitted with this context.

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

Implementation

set oemName(String? value) => _contextMap.setOrRemove(_oemNameKey, value);