FPSDeviceInfo.fromJSON constructor

FPSDeviceInfo.fromJSON(
  1. Map<String, dynamic> json
)

Implementation

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