static String strip(String? cpf) { var regExp = RegExp(stipRegex); cpf = cpf ?? ''; return cpf.replaceAll(regExp, ''); }