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