toTitleCase method

String toTitleCase()

Implementation

String toTitleCase() =>
    split(' ').map((str) => str.upperCaseFirstChar()).join(' ');