fillWithSpaces function

String fillWithSpaces(
  1. String str,
  2. int l
)

Implementation

String fillWithSpaces(String str, int l) {
  while (str.length < l) {
    str += " ";
  }
  return str;
}