String printBlock(Iterable<String> items) { return items.isNotEmpty ? ' {\n${items.join('\n')}\n}' : ''; }