elicitation property

  1. @Deprecated('Do not use, only clients have this capability')
Elicitation? get elicitation

Present if the server supports elicitation.

Implementation

@Deprecated('Do not use, only clients have this capability')
Elicitation? get elicitation => _value[Keys.elicitation] as Elicitation?;
  1. @Deprecated('Do not use, only clients have this capability')
set elicitation (Elicitation? value)

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[Keys.elicitation] = value;
}