ShippingOption constructor

ShippingOption({
  1. String? extra,
  2. int? client_id,
  3. string? id,
  4. string? title,
  5. vector<LabeledPricePart>? price_parts,
})

Implementation

ShippingOption({
  super.extra,
  super.client_id,
  this.id,
  this.title,
  this.price_parts,
});