appendToWord method

void appendToWord(
  1. String suffix
)

Implementation

void appendToWord(String suffix) {
  word = word ?? "_" + suffix;
}