user method
Changes router location to the Routes.user page.
If push
is true
, then location is pushed to the router location stack.
Implementation
void user(UserId id, {bool push = false}) =>
(push ? this.push : go)('${Routes.user}/$id');
Changes router location to the Routes.user page.
If push
is true
, then location is pushed to the router location stack.
void user(UserId id, {bool push = false}) =>
(push ? this.push : go)('${Routes.user}/$id');