isMatch method

bool isMatch(
  1. String input
)

Implementation

bool isMatch(String input) {
  return _expression.hasMatch(input);
}