PickupLocation constructor

PickupLocation({
  1. String? street2,
  2. String? city,
  3. String? street1,
  4. int? regionId,
  5. int? id,
  6. int? countryId,
  7. dynamic googlePlaceId,
  8. String? name,
  9. int? status,
})

Implementation

PickupLocation({
  this.street2,
  this.city,
  this.street1,
  this.regionId,
  this.id,
  this.countryId,
  this.googlePlaceId,
  this.name,
  this.status,
});