province property

String? province

The location province to attach to telemetry items.

Implementation

String? get province => _contextMap[_provinceKey] as String?;
void province=(String? value)

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

This is a convenience for setting the ai.location.province key on TelemetryContext.properties.

Implementation

set province(String? value) => _contextMap.setOrRemove(_provinceKey, value);