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('PriceCreateOptions(');
  if (active != null) {
    $buf
      ..writeln()
      ..write('  active: ')
      ..write(active)
      ..write(',');
  }
  if (billingScheme != null) {
    $buf
      ..writeln()
      ..write('  billing_scheme: ')
      ..write(billingScheme)
      ..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(',');
  }
  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 (nickname != null) {
    $buf
      ..writeln()
      ..write('  nickname: ')
      ..write(nickname)
      ..write(',');
  }
  if (product != null) {
    $buf
      ..writeln()
      ..write('  product: ')
      ..write(product)
      ..write(',');
  }
  if (productData != null) {
    $buf
      ..writeln()
      ..write('  product_data: ')
      ..write(productData)
      ..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 (transferLookupKey != null) {
    $buf
      ..writeln()
      ..write('  transfer_lookup_key: ')
      ..write(transferLookupKey)
      ..write(',');
  }
  if (transformQuantity != null) {
    $buf
      ..writeln()
      ..write('  transform_quantity: ')
      ..write(transformQuantity)
      ..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();
}