textUppercase method
Transforms text to uppercase.
Matches Bootstrap's .text-uppercase class.
Implementation
Text textUppercase() {
if (data != null) {
return _copyWithText(data!.toUpperCase());
}
return this;
}
Transforms text to uppercase.
Matches Bootstrap's .text-uppercase class.
Text textUppercase() {
if (data != null) {
return _copyWithText(data!.toUpperCase());
}
return this;
}