listChanged property
bool?
get
listChanged
Present if the client supports listing roots.
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;
}