textUppercase method

Text textUppercase()

Transforms text to uppercase.

Matches Bootstrap's .text-uppercase class.

Implementation

Text textUppercase() {
  if (data != null) {
    return _copyWithText(data!.toUpperCase());
  }
  return this;
}