argument property
CompletionArgument
get
argument
The argument's information.
Implementation
CompletionArgument get argument {
final argument = _value[Keys.argument] as CompletionArgument?;
if (argument == null) {
throw ArgumentError('Missing argument field in $CompleteRequest.');
}
return argument;
}