tripleGenerator top-level property
Implementation
final FigGenerator tripleGenerator = FigGenerator(
script: ['rustc', '--print', 'target-list'],
postProcess: (data, [tokens]) {
return data
.split('\n')
.where((line) => line.trim().isNotEmpty)
.map((name) => FigSuggestion(name: name))
.toList();
},
);