Repeats this string count times.
count
'-'.repeat(10); // '----------'
String repeat(int count) => List.filled(count, this).join();