listChanged property
bool?
get
listChanged
Whether this server supports notifications for changes to the resource list.
Implementation
bool? get listChanged => _value['listChanged'] as bool?;
set
listChanged
(bool? value)
Sets whether listChanged is supported.
Implementation
set listChanged(bool? value) {
assert(listChanged == null);
_value['listChanged'] = value;
}