ReCase constructor

ReCase(
  1. String text
)

Implementation

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