camelCase property

String get camelCase

Implementation

String get camelCase {
  if (isEmpty) return '';
  return parts[0] + parts.sublist(1).map((raw) => raw.capitalCase).join();
}