Insurance constructor
Insurance(})
Implementation
Insurance(
this.id,
this.address,
{
String? rev,
int? deletionDate,
Map<String, String>? name,
bool? privateInsurance,
bool? hospitalisationInsurance,
bool? ambulatoryInsurance,
String? code,
String? agreementNumber,
String? parent
}) : rev = rev ?? null,
deletionDate = deletionDate ?? null,
name = name ?? {},
privateInsurance = privateInsurance ?? false,
hospitalisationInsurance = hospitalisationInsurance ?? false,
ambulatoryInsurance = ambulatoryInsurance ?? false,
code = code ?? null,
agreementNumber = agreementNumber ?? null,
parent = parent ?? null;