group method
Implementation
void group(RouteOptions options, Function registrar) {
// add the group attributes to stack
_groupStack.add(options);
// load routes
registrar();
// remove latest group attributes from stack
_groupStack.removeLast();
}