ReCase constructor
ReCase(
- String text
Creates a new ReCase instance with the provided text.
Parameters:
text: The text to be converted to different cases
Implementation
ReCase(String text) {
originalText = text;
_words = _groupIntoWords(text);
}