appendContent method
append text of SpecialText
Implementation
void appendContent(String? value) {
if (value.isEmptyString) {
return;
}
_content.write(value);
}
append text of SpecialText
void appendContent(String? value) {
if (value.isEmptyString) {
return;
}
_content.write(value);
}