next abstract method

int? next(
  1. String line, [
  2. int start = 0
])

Looks for the next current pattern. The search starts at index start in line. Returns null if not found or the index of the hit.

Implementation

int? next(String line, [int start = 0]);