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