capitalize method

T capitalize()

Transform text to capitalize first letter of each word

Implementation

T capitalize() {
  return copyWith(flyStyle.copyWith(textTransform: 'capitalize'));
}