camelCaseToWords property

String get camelCaseToWords

Implementation

String get camelCaseToWords {
  return replaceAllMapped(
    RegExp(r'([a-z0-9])([A-Z])'),
    (match) => '${match.group(1)} ${match.group(2)}',
  ).singleSpace;
}