MqttSessionKilledData.fromJson constructor

MqttSessionKilledData.fromJson(
  1. Map<String, dynamic> json
)

Implementation

MqttSessionKilledData.fromJson(Map<String, dynamic> json) {
  sessions = json["sessions"] == null ? null : (json["sessions"] as List).map((e) => Sessions.fromJson(e)).toList();
}