functions/validators library

Functions

isListEmpty<T>(List<T>? value) bool
Checks if a nullable list is null or empty. Use List? extension isNullOrEmpty for cleaner code.
isStringEmpty(String? value) bool
Checks if a nullable string is null or empty. Use String? extension isNullOrEmpty for cleaner code.