symbol property
String
get
symbol
the symbol of the section
Implementation
String get symbol {
switch (this) {
case MustacheSection.section:
return '#';
case MustacheSection.endSection:
return '/';
case MustacheSection.invertedSection:
return '^';
}
}