MedicalLocationDto constructor

MedicalLocationDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. String? name,
  5. String? description,
  6. String? responsible,
  7. bool? guardPost,
  8. String? cbe,
  9. String? bic,
  10. String? bankAccount,
  11. String? nihii,
  12. String? ssin,
  13. AddressDto? address,
  14. Set<String> agendaIds = const {},
  15. Map<String, String> options = const {},
})

Returns a new MedicalLocationDto instance.

Implementation

MedicalLocationDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.name,
  this.description,
  this.responsible,
  this.guardPost,
  this.cbe,
  this.bic,
  this.bankAccount,
  this.nihii,
  this.ssin,
  this.address,
  this.agendaIds = const {},
  this.options = const {},
});