ReCase constructor

ReCase(
  1. String text
)

Implementation

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