render abstract method

Element render(
  1. String temp, [
  2. TemplateState? state
])

The render function.

This function accepts two parameters: temp which is of type String which represents the desired templating string to be rendered, and state which represents the state of the application, as a TemplateState.

The function returns a html element of type Element.

Implementation

Element render(String temp, [TemplateState? state]);