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 'RazorpaySettlementReconItem(entity_id: $entity_id, type: $type, debit: $debit, credit: $credit, amount: $amount, currency: $currency, fee: $fee, tax: $tax, on_hold: $on_hold, settled: $settled, created_at: $created_at, settled_at: $settled_at, settlement_id: $settlement_id, credit_type: $credit_type, order_id: $order_id, description: $description, payment_id: $payment_id, order_receipt: $order_receipt, card_network: $card_network, card_issuer: $card_issuer, card_type: $card_type, dispute_id: $dispute_id)';
}