toTitleCase method
Converts this string to Title Case.
'hello world'.toTitleCase(); // "Hello World"
'HELLO WORLD'.toTitleCase(); // "Hello World"
'hello_world'.toTitleCase(); // "Hello World"
Implementation
String toTitleCase() => _splitWords().map((w) => w.capitalize()).join(' ');