strip static method

String strip(
  1. String? cpf
)

Implementation

static String strip(String? cpf) {
  var regExp = RegExp(stipRegex);
  cpf = cpf ?? '';

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