elicitation property

ElicitationCapability? get elicitation

Present if the client supports elicitation.

Implementation

ElicitationCapability? get elicitation =>
    _value['elicitation'] as ElicitationCapability?;
set elicitation (ElicitationCapability? value)

Sets elicitation, asserting it is null first.

Implementation

set elicitation(ElicitationCapability? value) {
  assert(elicitation == null);
  _value['elicitation'] = value;
}