template property

String template

The mustache template.

Implementation

String get template => _parser.template;
void template=(String value)

The mustache template.

Implementation

set template(String value) {
  _parser.template = value;
  if (_autoVariables) {
    createVariables(_defaultVariables);
  }
}