camelCase property

String get camelCase

Gets the text in camelCase format.

Example: "hello world".camelCase returns "helloWorld"

Implementation

String get camelCase => ReCase(this).camelCase;