EventLocation constructor

EventLocation({
  1. String? city,
  2. String? continentCode,
  3. String? regionCode,
  4. String? storeId,
  5. String? subcontinentCode,
  6. String? subdivisionCode,
})

Implementation

EventLocation({
  this.city,
  this.continentCode,
  this.regionCode,
  this.storeId,
  this.subcontinentCode,
  this.subdivisionCode,
});