model property

String? model

The device model to attach to telemetry items.

Implementation

String? get model => _contextMap[_modelKey] as String?;
void model=(String? value)

Setting will change the devicemodel attached to telemetry items submitted with this context.

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

Implementation

set model(String? value) => _contextMap.setOrRemove(_modelKey, value);