string_ext 0.2.0-nullsafety.0 string_ext: ^0.2.0-nullsafety.0 copied to clipboard
Dart extension methods for String. Provides a more convenient and powerful API for working with strings.
[0.2.0-nullsafety.0] - 2020-12-03 #
- Migrated to null safety.
[0.1.0] - 2020-10-16 #
- Getter
isNullOrEmpty
- returnstrue
if the string isnull
or empty. - Getter
isNotNullNorEmpty
- returnstrue
if the string is notnull
and not empty. - Method
firstToUpper()
- converts first character in the string to upper case.