ShippingService constructor

ShippingService({
  1. int? id,
  2. List<ShippingServiceCountry>? countries,
  3. String? name,
  4. String? info,
  5. bool? active,
  6. bool? allowsPod,
  7. dynamic logoKey,
  8. dynamic baseUrl,
})

Implementation

ShippingService({
  this.id,
  this.countries,
  this.name,
  this.info,
  this.active,
  this.allowsPod,
  this.logoKey,
  this.baseUrl,
});