minLength static method
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;
}