DevRecordParam constructor

DevRecordParam({
  1. required DateTime beginTime,
  2. required DateTime endTime,
  3. int channel = 0,
  4. int driverTypeMask = 0xFFFF,
  5. String event = '*',
  6. int streamType = 0,
  7. String type = 'h264',
})

Implementation

DevRecordParam(
    {required this.beginTime,
    required this.endTime,
    this.channel = 0,
    this.driverTypeMask = 0xFFFF,
    this.event = '*',
    this.streamType = 0,
    this.type = 'h264'});