UUserJson constructor

UUserJson({
  1. String? fcmToken,
  2. List<String>? health1,
  3. List<String>? foodAllergies,
  4. List<String>? drugAllergies,
  5. List<String>? sickness,
  6. int? weight,
  7. int? height,
  8. String? address,
  9. String? fatherName,
  10. List<UVisitCount>? visitCounts,
  11. List<UUserAnswerJson> userAnswerJson = const <UUserAnswerJson>[],
})

Implementation

UUserJson({
  this.fcmToken,
  this.health1,
  this.foodAllergies,
  this.drugAllergies,
  this.sickness,
  this.weight,
  this.height,
  this.address,
  this.fatherName,
  this.visitCounts,
  this.userAnswerJson = const <UUserAnswerJson>[],
});