DocumentTemplate constructor
DocumentTemplate(
- String id, {
- String? rev,
- int? created,
- int? modified,
- String? author,
- String? responsible,
- String? medicalLocationId,
- Set<
CodeStub> ? tags, - Set<
CodeStub> ? codes, - int? endOfLife,
- int? deletionDate,
- Uint8List? attachment,
- DocumentType? documentType,
- String? mainUti,
- String? name,
- Set<
String> ? otherUtis, - String? attachmentId,
- ReportVersion? version,
- String? owner,
- String? guid,
- DocumentGroup? group,
- String? descr,
- String? disabled,
- CodeStub? specialty,
Implementation
DocumentTemplate(
this.id,
{
String? rev,
int? created,
int? modified,
String? author,
String? responsible,
String? medicalLocationId,
Set<CodeStub>? tags,
Set<CodeStub>? codes,
int? endOfLife,
int? deletionDate,
Uint8List? attachment,
DocumentType? documentType,
String? mainUti,
String? name,
Set<String>? otherUtis,
String? attachmentId,
ReportVersion? version,
String? owner,
String? guid,
DocumentGroup? group,
String? descr,
String? disabled,
CodeStub? specialty
}) : rev = rev ?? null,
created = created ?? null,
modified = modified ?? null,
author = author ?? null,
responsible = responsible ?? null,
medicalLocationId = medicalLocationId ?? null,
tags = tags ?? {},
codes = codes ?? {},
endOfLife = endOfLife ?? null,
deletionDate = deletionDate ?? null,
attachment = attachment ?? null,
documentType = documentType ?? null,
mainUti = mainUti ?? null,
name = name ?? null,
otherUtis = otherUtis ?? {},
attachmentId = attachmentId ?? null,
version = version ?? null,
owner = owner ?? null,
guid = guid ?? null,
group = group ?? null,
descr = descr ?? null,
disabled = disabled ?? null,
specialty = specialty ?? null;