lowerCase static method
Check if the value is in lowercase
Implementation
static String? lowerCase(String? value, {String? message}) =>
value == null || value.isEmpty || validations.isLowerCase(value) ? null : message ?? 'Please enter only lowercase letters';