extractAlphanumeric static method

String extractAlphanumeric(
  1. String message
)

Implementation

static String extractAlphanumeric(String message) {
  return alphaNumericRegExp.allMatches(message).map((m) => m.group(0)!).join();
  }