textLowercase method

Text textLowercase()

Transforms text to lowercase.

Matches Bootstrap's .text-lowercase class.

Implementation

Text textLowercase() {
  if (data != null) {
    return _copyWithText(data!.toLowerCase());
  }
  return this;
}