TeleConsultationBook constructor

const TeleConsultationBook({
  1. Key? key,
  2. dynamic bookid,
  3. dynamic deptid,
  4. dynamic mbprice,
  5. dynamic type,
  6. required dynamic teleResponse,
  7. required dynamic bySymptoms,
  8. required dynamic maxdate,
  9. required dynamic mindate,
  10. required dynamic departmentName,
  11. required dynamic departmentDescription,
  12. required dynamic departmentImage,
  13. required dynamic passNav,
})

Implementation

const TeleConsultationBook({
  super.key,
  this.bookid,
  this.deptid,
  this.mbprice,
  this.type,
  required this.teleResponse,
  required this.bySymptoms,
  required this.maxdate,
  required this.mindate,
  required this.departmentName,
  required this.departmentDescription,
  required this.departmentImage,
  required this.passNav,
});