camelCase method

String camelCase()

Implementation

String camelCase() {
  final words = _intoWords(this)
      .map((w) =>
          '${w.substring(0, 1).toUpperCase()}${w.substring(1).toLowerCase()}')
      .toList();
  words[0] = words[0].toLowerCase();
  return words.join();
}