Repeats a string a given number of times.
String repeatString(String str, int count) { return List.filled(count, str).join(); }