utils/strings/string_utils library

Functions

camelCase(String s) String
Returns the camel-cased form of s.
capitalizeFirstLetter(dynamic s) String?
Returns the String s, with the first letter capitalized.
hyphenate(String s) String
Returns the hyphenated form of s.
lowerCamelCase(String s) String
Returns the lower-camel-cased form of s.
titleCase(String s) String
Returns a human-readable title-cased form of a camel-cased String.
underscore(String s) String
Returns the underscored form of s.