capitalize method
T
capitalize()
Transform text to capitalize first letter of each word
Implementation
T capitalize() {
return copyWith(flyStyle.copyWith(textTransform: 'capitalize'));
}
Transform text to capitalize first letter of each word
T capitalize() {
return copyWith(flyStyle.copyWith(textTransform: 'capitalize'));
}