MatchingOptionsCompletionResult constructor

const MatchingOptionsCompletionResult({
  1. required CompletionLevel completionLevel,
  2. required String pattern,
})

A CompletionResult that suggests the options in a completionLevel that starts with pattern.

Implementation

const MatchingOptionsCompletionResult({
  required this.completionLevel,
  required this.pattern,
});