ShippingMethod constructor

ShippingMethod({
  1. String? code,
  2. String? price,
  3. String? title,
  4. String? name,
  5. String? carrierIdentifier,
  6. List<TaxLines>? taxLines,
})

Implementation

ShippingMethod(
    {this.code,
    this.price,
    this.title,
    this.name,
    this.carrierIdentifier,
    this.taxLines});