OptionValuesCompletionResult.abbr constructor
const
OptionValuesCompletionResult.abbr({
- required CompletionLevel completionLevel,
- required String abbrName,
- String? pattern,
- bool includeAbbrName = false,
A CompletionResult that suggests the values of an option given its optionName and its completionLevel.
Implementation
const OptionValuesCompletionResult.abbr({
required this.completionLevel,
required String abbrName,
this.pattern,
this.includeAbbrName = false,
}) : isAbbr = true,
optionName = abbrName;