elicitation property
ElicitationCapability?
get
elicitation
Present if the client supports elicitation.
Implementation
ElicitationCapability? get elicitation =>
_value[Keys.elicitation] as ElicitationCapability?;
set
elicitation
(ElicitationCapability? value)
Sets elicitation, asserting it is null first.
Implementation
set elicitation(ElicitationCapability? value) {
assert(elicitation == null);
_value[Keys.elicitation] = value;
}