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 'RazorpayDisputesContestBaseRequestBody(amount: $amount, summary: $summary, shipping_proof: $shipping_proof, billing_proof: $billing_proof, cancellation_proof: $cancellation_proof, customer_communication: $customer_communication, proof_of_service: $proof_of_service, explanation_letter: $explanation_letter, refund_confirmation: $refund_confirmation, access_activity_log: $access_activity_log, refund_cancellation_policy: $refund_cancellation_policy, term_and_conditions: $term_and_conditions, others: $others, action: $action, submitted_at: $submitted_at)';
}