validateNumeroDas static method
Valida e lança exceção se inválido
Implementation
static void validateNumeroDas(String numero, {String? fieldName}) {
if (!isValidNumeroDas(numero)) {
throw ArgumentError(
'${fieldName ?? 'Número do DAS'} inválido: deve ter exatamente 17 dígitos',
);
}
}