getSpaces method

String getSpaces(
  1. int length
)

Implementation

String getSpaces(int length) {
  return ' ' * length * 2;
}