repeat function

String repeat(
  1. String content,
  2. int times
)

Implementation

String repeat(String content, int times) {
  return List.filled(times, content).join();
}