compile method

Function? compile(
  1. String template
)

returns new compile function based on given template

Implementation

Function? compile(String template) {
  if (_fn != null) {
    return _fn!(template);
  }

  return null;
}