ip property

String? ip

The location IP address to attach to telemetry items.

Implementation

String? get ip => _contextMap[_ipKey] as String?;
void ip=(String? value)

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

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

Implementation

set ip(String? value) => _contextMap.setOrRemove(_ipKey, value);