spacedFromCamelCase property

String get spacedFromCamelCase

Implementation

String get spacedFromCamelCase {
  return replaceAllMapped(RegExp(r'(?<=[a-z])(?=[A-Z])'), (match) => ' ');
}