toCamelCaseJoin property
Returns a string in camel case format by splitting the original string using word splitters and joining them together.
Example:
String input = "hello_world";
String result = input.toCamelCaseJoin;
print(result); // Output: "helloWorld"
Implementation
string get toCamelCaseJoin => toCamelCase.splitAny(wordSplitters, true).join('');