EMPresenceStatusDetail.fromJson constructor
- Map map
Implementation
factory EMPresenceStatusDetail.fromJson(Map map) {
String device = map["device"];
int status = map["status"] ?? 0;
return EMPresenceStatusDetail._private(device, status);
}
factory EMPresenceStatusDetail.fromJson(Map map) {
String device = map["device"];
int status = map["status"] ?? 0;
return EMPresenceStatusDetail._private(device, status);
}