FPSDeviceInfo.fromJSON constructor
Implementation
factory FPSDeviceInfo.fromJSON(Map<String, dynamic> json) {
return FPSDeviceInfo(
serialNumber: json["serialNumber"],
sensorName: json["sensorName"],
responseCode: json["responseCode"]);
}