render method
Implementation
Future<String> render(
String viewName, {
Map<String, dynamic> context = const {},
bool escapeOutput = true,
}) async {
final template = await _loadTemplate(viewName);
final processedTemplate = await _applyDirectives(template, context);
return _renderExpressions(processedTemplate, context, escapeOutput);
}