lowerCase static method

String? lowerCase(
  1. String? value, {
  2. String? message,
})

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';