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