camelCase property

String get camelCase

Implementation

String get camelCase => this.isEmpty
    ? ''
    : this.length > 0
        ? '${this[0].toUpperCase()}${this.substring(1)}'
        : '';