validatePeriodo static method
Valida e lança exceção se inválido
Implementation
static void validatePeriodo(String periodo, {String? fieldName}) {
if (!isValidPeriodo(periodo)) {
throw ArgumentError(
'${fieldName ?? 'Período'} inválido: deve estar no formato AAAAMM (ex: 202401)',
);
}
}