camelCase property

String get camelCase

Implementation

String get camelCase {
  if (isEmpty) return this;
  final p = pascalCase;
  return p[0].toLowerCase() + p.substring(1);
}