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 'RazorpayRefund(id: $id, entity: $entity, currency: $currency, payment_id: $payment_id, created_at: $created_at, status: $status, amount: $amount, notes: $notes, receipt: $receipt, acquirer_data: $acquirer_data, batch_id: $batch_id, speed_processed: $speed_processed, speed_requested: $speed_requested)';
}