previous abstract method

int? previous(
  1. String line, [
  2. int? start
])

Looks for the previous current pattern. start: If null the whole line is inspected. Otherwise the search starts at this index Returns null if not found or the index of the hit.

Implementation

int? previous(String line, [int? start]);