minLength static method

String? minLength(
  1. String? value,
  2. int length, {
  3. String? message,
})

Implementation

static String? minLength(String? value, int length,
    {String? message}) {
  if (value == null || value.isEmpty) return null;

  if (value.length < length) {
    return message ?? "Minimum $length characters required";
  }
  return null;
}