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 'RazorpayTransfer(id: $id, entity: $entity, status: $status, source: $source, currency: $currency, notes: $notes, tax: $tax, on_hold: $on_hold, on_hold_until: $on_hold_until, linked_account_notes: $linked_account_notes, recipient_settlement_id: $recipient_settlement_id, recipient_settlement: $recipient_settlement, processed_at: $processed_at, error: $error)';
}