camelCase property

String camelCase

The camelCase version of this.

Implementation

String get camelCase => groupIntoWords().mapIndexed((index, word) {
      if (index == 0) return word.toLowerCase();
      return word.capitalized;
    }).join();