camelCase static method

String? camelCase(
  1. String s
)

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);
}