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('Price(');
  $buf
    ..writeln()
    ..write('  active: ')
    ..write(active)
    ..write(',');
  $buf
    ..writeln()
    ..write('  billing_scheme: ')
    ..write(billingScheme)
    ..write(',');
  $buf
    ..writeln()
    ..write('  created: ')
    ..write(created)
    ..write(',');
  $buf
    ..writeln()
    ..write('  currency: ')
    ..write(currency)
    ..write(',');
  if (currencyOptions != null) {
    $buf
      ..writeln()
      ..write('  currency_options: ')
      ..write(currencyOptions)
      ..write(',');
  }
  if (customUnitAmount != null) {
    $buf
      ..writeln()
      ..write('  custom_unit_amount: ')
      ..write(customUnitAmount)
      ..write(',');
  }
  $buf
    ..writeln()
    ..write('  id: ')
    ..write(id)
    ..write(',');
  $buf
    ..writeln()
    ..write('  livemode: ')
    ..write(livemode)
    ..write(',');
  if (lookupKey != null) {
    $buf
      ..writeln()
      ..write('  lookup_key: ')
      ..write(lookupKey)
      ..write(',');
  }
  $buf
    ..writeln()
    ..write('  metadata: ')
    ..write(metadata)
    ..write(',');
  if (nickname != null) {
    $buf
      ..writeln()
      ..write('  nickname: ')
      ..write(nickname)
      ..write(',');
  }
  $buf
    ..writeln()
    ..write('  object: ')
    ..write(object)
    ..write(',');
  $buf
    ..writeln()
    ..write('  product: ')
    ..write(product)
    ..write(',');
  if (recurring != null) {
    $buf
      ..writeln()
      ..write('  recurring: ')
      ..write(recurring)
      ..write(',');
  }
  if (taxBehavior != null) {
    $buf
      ..writeln()
      ..write('  tax_behavior: ')
      ..write(taxBehavior)
      ..write(',');
  }
  if (tiers != null) {
    $buf
      ..writeln()
      ..write('  tiers: ')
      ..write(tiers)
      ..write(',');
  }
  if (tiersMode != null) {
    $buf
      ..writeln()
      ..write('  tiers_mode: ')
      ..write(tiersMode)
      ..write(',');
  }
  if (transformQuantity != null) {
    $buf
      ..writeln()
      ..write('  transform_quantity: ')
      ..write(transformQuantity)
      ..write(',');
  }
  $buf
    ..writeln()
    ..write('  type: ')
    ..write(type)
    ..write(',');
  if (unitAmount != null) {
    $buf
      ..writeln()
      ..write('  unit_amount: ')
      ..write(unitAmount)
      ..write(',');
  }
  if (unitAmountDecimal != null) {
    $buf
      ..writeln()
      ..write('  unit_amount_decimal: ')
      ..write(unitAmountDecimal)
      ..write(',');
  }
  $buf.write(')');
  return $buf.toString();
}