addSpaces method
Append a total
number of spaces in the target file. Typically used for
formatting indentation.
Implementation
void addSpaces(int total) {
for (var i = 0; i < total; i++) {
_buff.write(' ');
}
_column += total;
}
Append a total
number of spaces in the target file. Typically used for
formatting indentation.
void addSpaces(int total) {
for (var i = 0; i < total; i++) {
_buff.write(' ');
}
_column += total;
}