static String stripCpf(String? cpf) { RegExp regExp = RegExp(stripRegex); cpf = cpf ?? ""; return cpf.replaceAll(regExp, ""); }