static String strip(String? cnpj) { RegExp regex = RegExp(stripRegex); cnpj = cnpj ?? ""; return cnpj.replaceAll(regex, ""); }