strip static method

String strip(
  1. String card
)

Implementation

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