toTitleCase method
Converts identifiers and phrases to Title Case.
Implementation
String toTitleCase() => _splitIdentifierWords()
.map((w) => w[0].toUpperCase() + w.substring(1))
.join(' ');
Converts identifiers and phrases to Title Case.
String toTitleCase() => _splitIdentifierWords()
.map((w) => w[0].toUpperCase() + w.substring(1))
.join(' ');