shouldCharacters method

void shouldCharacters(
  1. String? text
)

Implementation

void shouldCharacters(String? text) {
  if (element != null) {
    if (isOnCurrentTag()) {
      this.onCharacters(text);
    } else if (isScope()) {
      this.onScopedCharacters(text);
    }
  }
}