Prints each entry in items on its own line, prefixed with bullet.
items
bullet
static void list(List<String> items, {String bullet = '•'}) { for (final item in items) { print(' $bullet $item'); } }