Formats s with camel case style.
s
String toCamelCase(String s) { return toUpperCaseInitials(s).replaceAll(RegExp(r'\s+'), ''); }