stripCpf static method

String stripCpf(
  1. String? cpf
)

Implementation

static String stripCpf(String? cpf) {
  RegExp regExp = RegExp(stripRegex);
  cpf = cpf ?? "";

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