user method

void user(
  1. UserId id, {
  2. bool push = false,
})

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');