string_capitalize 0.0.5
string_capitalize: ^0.0.5 copied to clipboard
Simple extension for Dart language to capitalize our strings
[./doc/assets/banner.png]
To uppercase first letter of the word
Install #
Dart #
dart pub add string_capitalize
Flutter #
flutter pub add string_capitalize
Methods #
-
capitalizemethod does transform first letter a uppercase of theStringor returns emptyString; -
capitalizeOrFailmethod does transform first letter a uppercase of theStringor returns an exception; -
capitalizeEachmethod does transform all first letter a uppercase of words of theStringor returns emptyString; -
capitalizeEachOrFailmethod does transform all first letter a uppercase of words of theStringor returns an exception.