getRemovablePackages top-level property
Implementation
final FigGenerator getRemovablePackages = FigGenerator(
script: ['ls', '.yalc'],
postProcess: (String out, [List<String>? tokens]) {
return out.split('\n').map((path) => FigSuggestion(
name: path,
icon: '📦',
description: path,
)).toList();
},
);