name property
name of the dynamic segment declared in path e.g /path/:id -> name = id
if not provided the name of the parameter will be used (@PathParam() int id); -> name = id
Implementation
final String? name;
name of the dynamic segment declared in path e.g /path/:id -> name = id
if not provided the name of the parameter will be used (@PathParam() int id); -> name = id
final String? name;