mqttConnect static method

bool mqttConnect()

Implementation

static bool mqttConnect() {
  var isLogin = SpUtil.getBool(BytedeskConstants.isLogin);
  if (isLogin!) {
    BytedeskMqtt().connect();
    return true;
  }
  return false;
}