toString method
A string representation of this object.
Some classes have a default textual representation,
often paired with a static parse
function (like int.parse).
These classes will provide the textual representation as
their string representation.
Other classes have no meaningful textual representation
that a program will care about.
Such classes will typically override toString
to provide
useful information when inspecting the object,
mainly for debugging or logging.
Implementation
@override
String toString() {
return 'EncryptedPatient(id: $id, identifier: $identifier, rev: $rev, created: $created, modified: $modified, author: $author, responsible: $responsible, tags: $tags, codes: $codes, endOfLife: $endOfLife, deletionDate: $deletionDate, firstName: $firstName, lastName: $lastName, names: $names, companyName: $companyName, languages: $languages, addresses: $addresses, civility: $civility, gender: $gender, birthSex: $birthSex, mergeToPatientId: $mergeToPatientId, mergedIds: $mergedIds, alias: $alias, active: $active, deactivationReason: $deactivationReason, deactivationDate: $deactivationDate, ssin: $ssin, maidenName: $maidenName, spouseName: $spouseName, partnerName: $partnerName, personalStatus: $personalStatus, dateOfBirth: $dateOfBirth, dateOfDeath: $dateOfDeath, timestampOfLatestEidReading: $timestampOfLatestEidReading, placeOfBirth: $placeOfBirth, placeOfDeath: $placeOfDeath, deceased: $deceased, education: $education, profession: $profession, notes: $notes, note: $note, administrativeNote: $administrativeNote, nationality: $nationality, race: $race, ethnicity: $ethnicity, preferredUserId: $preferredUserId, picture: $picture, externalId: $externalId, insurabilities: $insurabilities, partnerships: $partnerships, patientHealthCareParties: $patientHealthCareParties, financialInstitutionInformation: $financialInstitutionInformation, medicalHouseContracts: $medicalHouseContracts, patientProfessions: $patientProfessions, parameters: $parameters, properties: $properties, hcPartyKeys: $hcPartyKeys, aesExchangeKeys: $aesExchangeKeys, transferKeys: $transferKeys, privateKeyShamirPartitions: $privateKeyShamirPartitions, publicKey: $publicKey, publicKeysForOaepWithSha256: $publicKeysForOaepWithSha256, secretForeignKeys: $secretForeignKeys, cryptedForeignKeys: $cryptedForeignKeys, delegations: $delegations, encryptionKeys: $encryptionKeys, encryptedSelf: $encryptedSelf, securityMetadata: $securityMetadata, cryptoActorProperties: $cryptoActorProperties, medicalLocationId: $medicalLocationId, nonDuplicateIds: $nonDuplicateIds, encryptedAdministrativesDocuments: $encryptedAdministrativesDocuments, comment: $comment, warning: $warning, fatherBirthCountry: $fatherBirthCountry, birthCountry: $birthCountry, nativeCountry: $nativeCountry, socialStatus: $socialStatus, mainSourceOfIncome: $mainSourceOfIncome, schoolingInfos: $schoolingInfos, employementInfos: $employementInfos, parentId: $parentId)';
}