Test.data constructor

Test.data(
  1. String? id,
  2. String? motherId,
  3. String? deviceId,
  4. String? doctorId,
  5. int? weight,
  6. int? gAge,
  7. int? age,
  8. int? fisherScore,
  9. int? fisherScore2,
  10. String? motherName,
  11. String? deviceName,
  12. String? doctorName,
  13. String? patientId,
  14. String? organizationId,
  15. String? organizationName,
  16. String? imageLocalPath,
  17. String? imageFirePath,
  18. String? audioLocalPath,
  19. String? audioFirePath,
  20. bool? isImgSynced,
  21. bool? isAudioSynced,
  22. List<int>? bpmEntries,
  23. List<int>? bpmEntries2,
  24. List<int>? mhrEntries,
  25. List<int>? spo2Entries,
  26. List<int>? baseLineEntries,
  27. List<int>? movementEntries,
  28. List<int>? autoFetalMovement,
  29. List<int>? tocoEntries,
  30. int? lengthOfTest,
  31. int? averageFHR,
  32. bool? live,
  33. bool? testByMother,
  34. String? testById,
  35. String? interpretationType,
  36. String? interpretationExtraComments,
  37. Map<String, dynamic>? associations,
  38. Map<String, dynamic>? autoInterpretations,
  39. bool? delete,
  40. DateTime? createdOn,
  41. String? createdBy,
)

Constructs a Test instance with the given data.

Implementation

Test.data(
  this.id,
  this.motherId,
  this.deviceId,
  this.doctorId,
  this.weight,
  this.gAge,
  this.age,
  this.fisherScore,
  this.fisherScore2,
  this.motherName,
  this.deviceName,
  this.doctorName,
  this.patientId,
  this.organizationId,
  this.organizationName,
  this.imageLocalPath,
  this.imageFirePath,
  this.audioLocalPath,
  this.audioFirePath,
  this.isImgSynced,
  this.isAudioSynced,
  this.bpmEntries,
  this.bpmEntries2,
  this.mhrEntries,
  this.spo2Entries,
  this.baseLineEntries,
  this.movementEntries,
  this.autoFetalMovement,
  this.tocoEntries,
  this.lengthOfTest,
  this.averageFHR,
  this.live,
  this.testByMother,
  this.testById,
  this.interpretationType,
  this.interpretationExtraComments,
  this.associations,
  this.autoInterpretations,
  this.delete,
  this.createdOn,
  this.createdBy,
);