hasMatch method

  1. @override
bool hasMatch(
  1. String input
)
override

Evaluates if the the patter has a match with the input

Implementation

@override
bool hasMatch(String input) {
  return regExp.hasMatch(input);
}