OptionValuesCompletionResult constructor

const OptionValuesCompletionResult({
  1. required CompletionLevel completionLevel,
  2. required String optionName,
  3. String? pattern,
})

A CompletionResult that suggests the values of an option given its optionName and its completionLevel.

Implementation

const OptionValuesCompletionResult({
  required this.completionLevel,
  required this.optionName,
  this.pattern,
})  : isAbbr = false,
      includeAbbrName = false;