listChanged property

bool? get listChanged

Whether this server supports notifications for changes to the prompt list.

Implementation

bool? get listChanged => _value[Keys.listChanged] as bool?;
set listChanged (bool? value)

Sets whether listChanged is supported.

Implementation

set listChanged(bool? value) {
  assert(listChanged == null);
  _value[Keys.listChanged] = value;
}