render abstract method

String render(
  1. String name,
  2. Map<String, Object?> values
)

Renders the template called name with values.

Throws TemplateNotFound when no such template exists, so a typo is a failure rather than an empty page.

Implementation

String render(String name, Map<String, Object?> values);