contact method

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

Changes router location to the Routes.contacts page.

If push is true, then location is pushed to the router location stack.

Implementation

void contact(UserId id, {bool push = false}) =>
    (push ? this.push : go)('${Routes.contacts}/$id');