TextCase constructor

TextCase(
  1. String text
)

Implementation

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