chatInfo method

void chatInfo(
  1. ChatId id, {
  2. bool push = false,
})

Changes router location to the Routes.chatInfo page.

Implementation

void chatInfo(ChatId id, {bool push = false}) =>
    (push ? this.push : go)('${Routes.chats}/$id${Routes.chatInfo}');