Nudge constructor

Nudge({
  1. String? type,
  2. Location? location,
  3. Content? content,
  4. Media? media,
  5. Design? design,
  6. bool? hasActionButton,
  7. ActionButton? actionButton,
  8. String? id,
})

Implementation

Nudge({
  this.type,
  this.location,
  this.content,
  this.media,
  this.design,
  this.hasActionButton,
  this.actionButton,
  this.id,
});