withClearSession method

MqttClient withClearSession(
  1. bool clear
)

set ConnectPacket clearSession default:true

Implementation

MqttClient withClearSession(bool clear) {
  _connectPacket.cleanStart = clear;
  return this;
}