Conference constructor

Conference({
  1. String? acronym,
  2. String? aspectRatio,
  3. String? updatedAt,
  4. String? title,
  5. String? scheduleUrl,
  6. String? slug,
  7. String? eventLastReleasedAt,
  8. String? link,
  9. String? description,
  10. String? webgenLocation,
  11. String? logoUrl,
  12. String? imagesUrl,
  13. String? recordingsUrl,
  14. String? url,
})

Implementation

Conference({
  this.acronym,
  this.aspectRatio,
  this.updatedAt,
  this.title,
  this.scheduleUrl,
  this.slug,
  this.eventLastReleasedAt,
  this.link,
  this.description,
  this.webgenLocation,
  this.logoUrl,
  this.imagesUrl,
  this.recordingsUrl,
  this.url,
});