strip static method

String strip(
  1. String cpf
)

Implementation

static String strip(String cpf) {
  RegExp regExp = RegExp(STRIP_REGEX);
  return cpf.replaceAll(regExp, "");
}