toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final json = <String, dynamic>{};
  json[r'id'] = id;
  if (rev != null) {
    json[r'rev'] = rev;
  }
  if (created != null) {
    json[r'created'] = created;
  }
  if (modified != null) {
    json[r'modified'] = modified;
  }
  if (author != null) {
    json[r'author'] = author;
  }
  if (responsible != null) {
    json[r'responsible'] = responsible;
  }
  if (medicalLocationId != null) {
    json[r'medicalLocationId'] = medicalLocationId;
  }
  json[r'tags'] = tags.toList();
  json[r'codes'] = codes.toList();
  if (endOfLife != null) {
    json[r'endOfLife'] = endOfLife;
  }
  if (deletionDate != null) {
    json[r'deletionDate'] = deletionDate;
  }
  if (openingDate != null) {
    json[r'openingDate'] = openingDate;
  }
  if (status != null) {
    json[r'status'] = status;
  }
  if (version != null) {
    json[r'version'] = version;
  }
  if (logicalUuid != null) {
    json[r'logicalUuid'] = logicalUuid;
  }
  if (descr != null) {
    json[r'descr'] = descr;
  }
  if (uniqueId != null) {
    json[r'uniqueId'] = uniqueId;
  }
  if (formTemplateId != null) {
    json[r'formTemplateId'] = formTemplateId;
  }
  if (contactId != null) {
    json[r'contactId'] = contactId;
  }
  if (healthElementId != null) {
    json[r'healthElementId'] = healthElementId;
  }
  if (planOfActionId != null) {
    json[r'planOfActionId'] = planOfActionId;
  }
  if (parent != null) {
    json[r'parent'] = parent;
  }
  json[r'secretForeignKeys'] = secretForeignKeys.toList();
  json[r'cryptedForeignKeys'] = cryptedForeignKeys.map((k, v) => MapEntry(k, v.toList()));
  json[r'delegations'] = delegations.map((k, v) => MapEntry(k, v.toList()));
  json[r'encryptionKeys'] = encryptionKeys.map((k, v) => MapEntry(k, v.toList()));
  if (encryptedSelf != null) {
    json[r'encryptedSelf'] = encryptedSelf;
  }
  return json;
}