OriginLocation constructor

OriginLocation({
  1. int? id,
  2. String? countryCode,
  3. String? provinceCode,
  4. String? name,
  5. String? address1,
  6. String? address2,
  7. String? city,
  8. String? zip,
})

Implementation

OriginLocation(
    {this.id,
    this.countryCode,
    this.provinceCode,
    this.name,
    this.address1,
    this.address2,
    this.city,
    this.zip});