Location constructor

Location({
  1. String? event,
  2. num? frequency,
  3. String? page,
  4. dynamic pageUrl,
  5. dynamic element,
  6. dynamic conditions,
  7. String? logic,
  8. String? id,
  9. PageDetails? pageDetails,
})

Implementation

Location({
  this.event,
  this.frequency,
  this.page,
  this.pageUrl,
  this.element,
  this.conditions,
  this.logic,
  this.id,
  this.pageDetails,
});