toCamelCase property

String get toCamelCase

'Hello World''helloWorld'

Implementation

String get toCamelCase {
  final words = _words;
  if (words.isEmpty) return this;
  return words.first.toLowerCase() +
      words.skip(1).map((w) => w.toSentenceCase).join();
}