complete method

List<String> complete()

Implementation

List<String> complete() {
  if (_currentLine.isNotEmpty) {
    _results.add(_currentLine);
  }
  return List.unmodifiable(_results);
}