min static method
Check if the value is more than or equal to the given minimum value.
Implementation
static String? min(String? value, {String? message, required int length}) =>
value == null || value.isEmpty || value.length >= length ? null : message ?? 'Please enter a value greater than or equal to $length';