void addSpaces()

in lib/printer.dart [76:81]


  void addSpaces(int total) {
    for (var i = 0; i < total; i++) {
      _buff.write(' ');
    }
    _column += total;
  }