toCamelCase property

String toCamelCase

Converts string to camel case. Example: "hello_world" -> "helloWorld"

Implementation

String get toCamelCase => camelCase(this);