Presentation constructor

Presentation({
  1. List<Page>? layouts,
  2. String? locale,
  3. List<Page>? masters,
  4. Page? notesMaster,
  5. Size? pageSize,
  6. String? presentationId,
  7. String? revisionId,
  8. List<Page>? slides,
  9. String? title,
})

Implementation

Presentation({
  this.layouts,
  this.locale,
  this.masters,
  this.notesMaster,
  this.pageSize,
  this.presentationId,
  this.revisionId,
  this.slides,
  this.title,
});