Bot constructor

Bot({
  1. bool? active,
  2. bool? status,
  3. bool? journey,
  4. bool? hangup,
  5. String? startDtTime,
  6. String? endDtTime,
  7. int? duration,
})

Implementation

Bot({
  this.active,
  this.status,
  this.journey,
  this.hangup,
  this.startDtTime,
  this.endDtTime,
  this.duration,
});