MedicalLocation constructor

MedicalLocation(
  1. 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. DecryptedAddress? address,
  14. Set<String>? agendaIds,
  15. Map<String, String>? options,
  16. Map<String, String>? publicInformations,
})

Implementation

MedicalLocation(
	this.id,
	{
		String? rev,
		int? deletionDate,
		String? name,
		String? description,
		String? responsible,
		bool? guardPost,
		String? cbe,
		String? bic,
		String? bankAccount,
		String? nihii,
		String? ssin,
		DecryptedAddress? address,
		Set<String>? agendaIds,
		Map<String, String>? options,
		Map<String, String>? publicInformations
	}) : rev = rev ?? null,
	deletionDate = deletionDate ?? null,
	name = name ?? null,
	description = description ?? null,
	responsible = responsible ?? null,
	guardPost = guardPost ?? null,
	cbe = cbe ?? null,
	bic = bic ?? null,
	bankAccount = bankAccount ?? null,
	nihii = nihii ?? null,
	ssin = ssin ?? null,
	address = address ?? null,
	agendaIds = agendaIds ?? {},
	options = options ?? {},
	publicInformations = publicInformations ?? {};