TextCase constructor
TextCase(
- String text
Implementation
TextCase(String text) {
this.originalText = text;
this._words = _groupIntoWords(text);
}
TextCase(String text) {
this.originalText = text;
this._words = _groupIntoWords(text);
}