nestPattern property

RegExp nestPattern
getter/setter pair

Pattern for detecting whether a path name can have nested path names appended to it.

This pattern is matched against the entire path name.

The default nest pattern will match any path name ending with: '/...'.

Implementation

static RegExp nestPattern = RegExp(r'/...$');