Returns this string repeated n times, or empty if n <= 0.
n
@useResult String repeatTimes(int n) => n <= 0 ? '' : List<String>.filled(n, this).join();