repeat method

String repeat(
  1. int times
)

Implementation

String repeat(int times) => List.filled(times, this).join();