appendSpaces method

void appendSpaces(
  1. int amount
)

Adds the given amount of spaces to the end of this node.

Implementation

void appendSpaces(int amount) {
  _trailingSpaces += ' ' * amount;
}