renderUnsafe method
Renders a view without escaping (use with caution!)
Implementation
Future<String> renderUnsafe(
String viewName, {
Map<String, dynamic> context = const {},
}) async {
return render(viewName, context: context, escapeOutput: false);
}