toCamelCase method

String? toCamelCase()

Capitalize each word inside string Example: your name => yourName

Implementation

String? toCamelCase() => TransformUtils.camelCase(this);