isValidMonth static method
Implementation
static bool isValidMonth(dynamic month) {
int current = Converter.toInt(month);
return (current >= 1) && (current <= 12);
}
static bool isValidMonth(dynamic month) {
int current = Converter.toInt(month);
return (current >= 1) && (current <= 12);
}