minYear static method
Validates minimum year.
Implementation
static String? minYear(DateTime? value, int minYear, {String? fieldName}) {
if (value == null) return null;
if (value.year < minYear) {
return '${fieldName ?? "Year"} must be $minYear or later.';
}
return null;
}