DetectorInfo constructor

DetectorInfo({
  1. required String detectorSerial,
  2. String? detectorType,
  3. int? detectorState,
  4. String? detectorTypeName,
  5. String? location,
  6. int? zfStatus,
  7. int? uvStatus,
  8. int? iwcStatus,
  9. int? olStatus,
  10. int? atHomeEnable,
  11. int? outerEnable,
  12. int? sleepEnable,
  13. String? updateTime,
})

Implementation

DetectorInfo({
  required this.detectorSerial,
  this.detectorType,
  this.detectorState,
  this.detectorTypeName,
  this.location,
  this.zfStatus,
  this.uvStatus,
  this.iwcStatus,
  this.olStatus,
  this.atHomeEnable,
  this.outerEnable,
  this.sleepEnable,
  this.updateTime,
});