toCapitalCase method

String toCapitalCase()

Converts to a lowercased, first letter captialized word, space separated string of every word

example:

'hello world' -> 'Hello World'

Implementation

String toCapitalCase() => _fixCase(ChangeCaseType.capital);