MedicalLocation constructor
MedicalLocation(
- String 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,
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 ?? {};