isQQ static method

bool isQQ(
  1. String input
)

Return whether input matches regex of QQ.

Implementation

static bool isQQ(String input) {
  return matches(regexQQ, input);
}