toCamelCase method

String toCamelCase()

Converts to a string with the separators denoted by having the next letter capitalized

example:

'hello_world' -> 'helloWorld'

Implementation

String toCamelCase() => _fixCase(ChangeCaseType.camel);