allMatchs method

Iterable<RegExpMatch> allMatchs(
  1. String regexp
)

Implementation

Iterable<RegExpMatch> allMatchs(String regexp) {
  return RegExp(regexp).allMatches(this);
}