MustacheTag enum

the formats that Mustache supports

Inheritance
Available extensions

Values

camelCase → const MustacheTag

camelCase

constantCase → const MustacheTag

CONSTANT_CASE

dotCase → const MustacheTag

dot.case

headerCase → const MustacheTag

HeaderCase

lowerCase → const MustacheTag

lowercase

mustacheCase → const MustacheTag

{{ mustache }}

pascalCase → const MustacheTag

Pascal Case

paramCase → const MustacheTag

paramCase

pathCase → const MustacheTag

path_case

sentenceCase → const MustacheTag

Sentence Case

snakeCase → const MustacheTag

snake_case

titleCase → const MustacheTag

Title Case

upperCase → const MustacheTag

UPPERCASE

ifNot → const MustacheTag

no format, start of an inverted inline section

if_ → const MustacheTag

no format, start of an inline section

endIf → const MustacheTag

no format, end of an inline section

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
isCamelCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.camelCase
no setter
isConstantCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.constantCase
no setter
isDotCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.dotCase
no setter
isEndIf bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the format is MustacheTag.endIf
no setter
isFormat bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is a format type
no setter
isHeaderCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.headerCase
no setter
isIf bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the format is MustacheTag.if_
no setter
isIfNot bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the format is MustacheTag.ifNot
no setter
isLowerCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.lowerCase
no setter
isMustacheCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.mustacheCase
no setter
isParamCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.paramCase
no setter
isPascalCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.pascalCase
no setter
isPathCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.pathCase
no setter
isSentenceCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.sentenceCase
no setter
isSnakeCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.snakeCase
no setter
isTitleCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.titleCase
no setter
isUpperCase bool

Available on MustacheTag, provided by the MustacheTagX extension

whether the value is MustacheTag.upperCase
no setter
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
wrap(String content, {int? braceCount, String? startDeliminator, String? endDeliminator}) String

Available on MustacheTag, provided by the MustacheTagX extension

Wraps the content with mustache

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<MustacheTag>
A constant List of the values in this enum, in order of their declaration.