toString method

String toString()
override

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

String toString() {
  return "{start_at: '${reVal(startAt)}', end_at: '${reVal(endAt)}', expire_month: ${reVal(expireMonth)}, vbank_result: ${reVal(vbankResult)}," +
      "quotas: '${getQuotas()}', app_scheme: '${reVal(appScheme)}', locale: '${reVal(locale)}'," +
      "offer_period: '${reVal(offerPeriod)}', theme: '${reVal(appScheme)}', theme: '${reVal(theme)}', custom_background: '${reVal(customBackground)}', custom_font_color: '${reVal(customFontColor)}'," +
      "popup: ${reVal(popup)}, quick_popup: ${reVal(quickPopup)}, disp_cash_result: '${reVal(dispCashResult)}', escrow: ${reVal(escrow)}, iosCloseButton: $iosCloseButton}";
}