String camelize(String str) { // variables if (str.startsWith('--')) { return str; } return camelizeKebabCase(str); }