support method

void support({
  1. bool push = false,
})

Changes router location to the Config.supportId page.

Implementation

void support({bool push = false}) {
  chat(
    ChatId.local(UserId(Config.supportId)),
    mode: push ? RouteAs.push : RouteAs.replace,
  );
}