elicitation property
Present if the server supports elicitation.
Implementation
@Deprecated('Do not use, only clients have this capability')
Elicitation? get elicitation => _value['elicitation'] as Elicitation?;
Sets elicitation if it is null, otherwise asserts.
Implementation
@Deprecated('Do not use, only clients have this capability')
set elicitation(Elicitation? value) {
assert(elicitation == null);
_value['elicitation'] = value;
}