space method

String space({
  1. int spaceNum = 1,
})

Implementation

String space({int spaceNum = 1}) {
  return (' ' * spaceNum);
}