toString method

  1. @override
String toString()
inherited

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 'DecryptedInvoicingCode(id: $id, dateCode: $dateCode, logicalId: $logicalId, label: $label, userId: $userId, contactId: $contactId, serviceId: $serviceId, tarificationId: $tarificationId, code: $code, paymentType: $paymentType, paid: $paid, totalAmount: $totalAmount, reimbursement: $reimbursement, patientIntervention: $patientIntervention, doctorSupplement: $doctorSupplement, conventionAmount: $conventionAmount, vat: $vat, error: $error, contract: $contract, contractDate: $contractDate, units: $units, side: $side, timeOfDay: $timeOfDay, eidReadingHour: $eidReadingHour, eidReadingValue: $eidReadingValue, override3rdPayerCode: $override3rdPayerCode, override3rdPayerReason: $override3rdPayerReason, transplantationCode: $transplantationCode, prescriberNorm: $prescriberNorm, productLabel: $productLabel, percentNorm: $percentNorm, prescriberNihii: $prescriberNihii, relatedCode: $relatedCode, prescriptionDate: $prescriptionDate, derogationMaxNumber: $derogationMaxNumber, prescriberSsin: $prescriberSsin, prescriberLastName: $prescriberLastName, prescriberFirstName: $prescriberFirstName, prescriberCdHcParty: $prescriberCdHcParty, locationNihii: $locationNihii, locationCdHcParty: $locationCdHcParty, locationService: $locationService, admissionDate: $admissionDate, canceled: $canceled, accepted: $accepted, pending: $pending, resent: $resent, archived: $archived, lost: $lost, insuranceJustification: $insuranceJustification, cancelPatientInterventionReason: $cancelPatientInterventionReason, status: $status, encryptedSelf: $encryptedSelf)';
}