dart-multiline-strings
Installation
SKILL.md
Dart Multi-line Strings
1. When to use this skill
Use this skill when:
- Refactoring consecutive
print()orstdout.writeln()statements into a single, cohesive output block. - Simplifying string literals that span multiple lines, contain embedded
newlines (
\n), or use nested indentations. - Formatting large user-facing text output (like CLI help menus, reports, or templated messages) to be readable, maintainable, and performant.
Discovery
Related skills