toTitleCase property

String get toTitleCase

Converts the string to Title Case.

Example:

'hello world'.toTitleCase); // Hello World

Implementation

String get toTitleCase =>
    split(RegExp(r'[\s_-]+')).map((w) => w.capitalize).join(' ');