ShippingServiceCountry constructor

ShippingServiceCountry({
  1. int? id,
  2. String? name,
  3. String? code,
  4. List<FluffyRegion>? regions,
})

Implementation

ShippingServiceCountry({
  this.id,
  this.name,
  this.code,
  this.regions,
});