camelCase static method
Camelcase string Example: your name => yourName
Implementation
static String? camelCase(String s) {
if (ObjectUtils.isNullOrBlank(s)) {
return null;
}
return s[0].toLowerCase() + removeAllWhitespace(capitalize(s)!)!.substring(1);
}