Repeats the string count times.
count
String repeat(int count) { if (count <= 0) return ''; return List.generate(count, (index) => this).join(); }