path property

String? path
final

The blueprint path for this yeet.

You can use parameters and regexes inside paranthesis. For example '/user/:id(/d+)' means the path should match '/user/10' but not '/user/alice'.

It can also be relative. For example if the parent yeet has a path of '/profile' and this yeet has a path of 'settings' it's actually matching '/profile/settings'.

Implementation

final String? path;