strip static method

String strip(
  1. String cnpj
)

Implementation

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