hasMatch method

bool hasMatch(
  1. String input
)

Implementation

bool hasMatch(String input) {
  return _regExp.hasMatch(input);
}