matchAsPrefix method Null safety

Match? matchAsPrefix(
  1. String string,
  2. [int start = 0]
)

Matches this pattern against the start of string.

Returns a match if the pattern matches a substring of string starting at start, and null if the pattern doesn't match a that point.

The start must be non-negative and no greater than string.length.

Implementation

Match? matchAsPrefix(String string, [int start = 0]);