appendContent method

void appendContent(
  1. String? value
)

append text of SpecialText

Implementation

void appendContent(String? value) {
  if (value.isEmptyString) {
    return;
  }
  _content.write(value);
}