evaluateContent method
Evaluates the tag's content and returns the result as a string.
Implementation
dynamic evaluateContent(Evaluator evaluator) {
return content.map((node) => evaluator.evaluate(node)).join('');
}
Evaluates the tag's content and returns the result as a string.
dynamic evaluateContent(Evaluator evaluator) {
return content.map((node) => evaluator.evaluate(node)).join('');
}