Content constructor

Content({
  1. String? jcId,
  2. String? scheduleId,
  3. DateTime? visitDate,
  4. String? checkInId,
  5. String? checkInTime,
  6. dynamic checkOutTime,
  7. int? checkInType,
  8. String? checkInTypeName,
  9. int? status,
  10. String? statusName,
  11. User? user,
  12. Partner? partner,
  13. dynamic distance,
  14. Tasks? tasks,
})

Implementation

Content({
  this.jcId,
  this.scheduleId,
  this.visitDate,
  this.checkInId,
  this.checkInTime,
  this.checkOutTime,
  this.checkInType,
  this.checkInTypeName,
  this.status,
  this.statusName,
  this.user,
  this.partner,
  this.distance,
  this.tasks,
});