MustacheTemplateEngine constructor

const MustacheTemplateEngine({
  1. String delimiters = '{{ }}',
  2. String partialsRoot = 'content/_partials/',
  3. Object? prepareValues(
    1. Page page,
    2. List<Page> pages
    ) = _defaultPrepareValues,
})

Implementation

const MustacheTemplateEngine({
  this.delimiters = '{{ }}',
  this.partialsRoot = 'content/_partials/',
  this.prepareValues = _defaultPrepareValues,
});