MatchingCommandsCompletionResult constructor

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

A CompletionResult that suggests the sub commands in a completionLevel that matches pattern (A.K.A: startsWith).

Implementation

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