CompletionService constructor

CompletionService(
  1. String name
)

Implementation

factory CompletionService(String name) {
  switch (name) {
    case 'AVAILABLE_SUGGESTION_SETS':
      return AVAILABLE_SUGGESTION_SETS;
  }
  throw Exception('Illegal enum value: $name');
}