Print a list of items with bullets
static void printList(List<String> items, {String bullet = '•'}) { for (final String item in items) { print(' $bullet $item'); } }