matches method

bool matches(
  1. String input
)

Returns true if this pattern matches the complete input string.

Implementation

bool matches(String input) => _regExp.hasMatch(input);