classNameFull property
String
get
classNameFull
The full generated class name including prefix and suffix.
Implementation
String get classNameFull {
if (isRoot && !rootClassNameWithPrefixSuffix) {
return classNameNoPrefixSuffix;
} else {
return '$classNamePrefix$classNameNoPrefixSuffix$classNameSuffix';
}
}