MqttException constructor

MqttException({
  1. required String code,
  2. String? message,
  3. String? details,
})

Implementation

MqttException( {
  required this.code,
  this.message,
  this.details,
});