toString method

  1. @override
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

@override
String toString() {
  final $buf = StringBuffer()
    ..writeln('IssuingPersonalizationDesignUpdateOptions(');
  if (cardLogo != null) {
    $buf
      ..writeln()
      ..write('  card_logo: ')
      ..write(cardLogo)
      ..write(',');
  }
  if (carrierText != null) {
    $buf
      ..writeln()
      ..write('  carrier_text: ')
      ..write(carrierText)
      ..write(',');
  }
  if (expand != null) {
    $buf
      ..writeln()
      ..write('  expand: ')
      ..write(expand)
      ..write(',');
  }
  if (lookupKey != null) {
    $buf
      ..writeln()
      ..write('  lookup_key: ')
      ..write(lookupKey)
      ..write(',');
  }
  if (metadata != null) {
    $buf
      ..writeln()
      ..write('  metadata: ')
      ..write(metadata)
      ..write(',');
  }
  if (name != null) {
    $buf
      ..writeln()
      ..write('  name: ')
      ..write(name)
      ..write(',');
  }
  if (physicalBundle != null) {
    $buf
      ..writeln()
      ..write('  physical_bundle: ')
      ..write(physicalBundle)
      ..write(',');
  }
  if (preferences != null) {
    $buf
      ..writeln()
      ..write('  preferences: ')
      ..write(preferences)
      ..write(',');
  }
  if (transferLookupKey != null) {
    $buf
      ..writeln()
      ..write('  transfer_lookup_key: ')
      ..write(transferLookupKey)
      ..write(',');
  }
  $buf.write(')');
  return $buf.toString();
}