MatchingCommandsCompletionResult constructor
const
MatchingCommandsCompletionResult({
- required CompletionLevel completionLevel,
- 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,
});