Queue constructor

Queue({
  1. bool? inQueue,
  2. String? name,
  3. String? startDtTime,
  4. String? endDtTime,
  5. int? duration,
  6. int? ringTime,
})

Implementation

Queue({
  this.inQueue,
  this.name,
  this.startDtTime,
  this.endDtTime,
  this.duration,
  this.ringTime,
});