camelSplit property
Splits a camel case string into individual words. Returns a list of strings representing the words in the camel case string.
Implementation
StringList get camelSplit => camelSplitString.split(" ");
Splits a camel case string into individual words. Returns a list of strings representing the words in the camel case string.
StringList get camelSplit => camelSplitString.split(" ");