matchAsPrefix method Null safety
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]);