isFirst property

bool? isFirst

The session "is first" flag to attach to telemetry items.

Implementation

bool? get isFirst => _contextMap[_isFirstKey] as bool?;
void isFirst=(bool? value)

Setting will change the session "is first" flag attached to telemetry items submitted with this context.

This is a convenience for setting the ai.session.isFirst key on TelemetryContext.properties.

Implementation

set isFirst(bool? value) => _contextMap.setOrRemove(_isFirstKey, value);