strip static method

String strip(
  1. String? cpf
)

Implementation

static String strip(String? cpf) {
  RegExp regExp = RegExp(STRIP_REGEX);
  cpf = cpf == null ? "" : cpf;

  return cpf.replaceAll(regExp, "");
}