toTitleCase method

String toTitleCase()

Converts to Title Case (space-separated, each word capitalized).

'hello_world'.toTitleCase(); // 'Hello World'
'someHTTPResponse'.toTitleCase(); // 'Some Http Response'

Implementation

String toTitleCase() => _words.map(_capitalize).join(' ');