CardRecordByFile constructor

CardRecordByFile({
  1. int channel = 0,
  2. int streamType = 0,
  3. required int fileLength,
  4. required DateTime beginTime,
  5. required DateTime endTime,
  6. required String fileName,
})

Implementation

CardRecordByFile({
  this.channel = 0,
  this.streamType = 0,
  required this.fileLength,
  required this.beginTime,
  required this.endTime,
  required this.fileName,
});