completions property
Completions?
get
completions
Present if the server supports sending completion requests to the client.
Implementation
Completions? get completions => _value['completions'] as Completions?;
set
completions
(Completions? value)
Sets completions if it is null, otherwise throws.
Implementation
set completions(Completions? value) {
assert(completions == null);
_value['completions'] = value;
}