allMatches method Null safety

Iterable<RegExpMatch> allMatches (
  1. String input,
  2. [int start = 0]
)
override

Returns an iterable of the matches of the regular expression on input.

If start is provided, only start looking for matches at start.

Implementation

Iterable<RegExpMatch> allMatches(String input, [int start = 0]);