OrderData constructor

OrderData({
  1. String? userId,
  2. String? userKey,
  3. String? id,
  4. String? teamId,
  5. DateTime? createdOn,
  6. DateTime? updatedOn,
  7. String? status,
  8. String? testkitId,
  9. Testkit? testkit,
  10. String? inboundTrackingNumber,
  11. String? outboundTrackingNumber,
  12. String? inboundTrackingUrl,
  13. String? outboundTrackingUrl,
  14. String? outboundCourier,
  15. String? inboundCourier,
  16. PatientAddress? patientAddress,
  17. PatientDetails? patientDetails,
  18. String? sampleId,
})

Implementation

OrderData({
  this.userId,
  this.userKey,
  this.id,
  this.teamId,
  this.createdOn,
  this.updatedOn,
  this.status,
  this.testkitId,
  this.testkit,
  this.inboundTrackingNumber,
  this.outboundTrackingNumber,
  this.inboundTrackingUrl,
  this.outboundTrackingUrl,
  this.outboundCourier,
  this.inboundCourier,
  this.patientAddress,
  this.patientDetails,
  this.sampleId,
});