pathBlueprints property

List pathBlueprints
getter/setter pair

A list of path strings or regular expressions (using dart's RegExp class) that are to be guarded.

For strings: Asterisk wildcard is supported to denote "anything".

For example, '/books/' will match '/books/1', '/books/2/genres', etc. but will not match '/books'. To match '/books' and everything after it, use '/books'.

See _hasMatch for more details.

For RegExp: You can use RegExp instances and the delegate will check for a match using RegExp.hasMatch

For example, RegExp('/books/') will match '/books/1', '/books/2/genres', etc. but will not match '/books'. To match '/books' and everything after it, use RegExp('/books')

Implementation

List<dynamic> pathBlueprints;