EzvizAlarmInfo constructor

EzvizAlarmInfo({
  1. required String alarmId,
  2. String? alarmName,
  3. required int alarmType,
  4. required int alarmTime,
  5. required int channelNo,
  6. required int isEncrypt,
  7. required int isChecked,
  8. int? preTime,
  9. int? delayTime,
  10. required String deviceSerial,
  11. String? alarmPicUrl,
  12. String? customerType,
  13. String? customerInfo,
})

Implementation

EzvizAlarmInfo({
  required this.alarmId,
  this.alarmName,
  required this.alarmType,
  required this.alarmTime,
  required this.channelNo,
  required this.isEncrypt,
  required this.isChecked,
  this.preTime,
  this.delayTime,
  required this.deviceSerial,
  this.alarmPicUrl,
  // this.relationAlarms,
  this.customerType,
  this.customerInfo,
});