allVersions top-level property
Implementation
final FigGenerator allVersions = FigGenerator(
script: ['tfenv', 'list-remote'],
postProcess: (String out, [List<String>? tokens]) {
return out.split('\n').map((line) => FigSuggestion(name: line, type: SuggestionType.option)).toList();
},
);