ChatDeviceInfo.fromJson constructor

ChatDeviceInfo.fromJson(
  1. Map map
)

Implementation

factory ChatDeviceInfo.fromJson(Map map) {
  return ChatDeviceInfo._private(
    map["resource"],
    map["deviceUUID"],
    map["deviceName"],
  );
}