SlideTitleAndPhoto constructor

SlideTitleAndPhoto({
  1. String name = 'Title and Photo',
  2. TextValue? title,
  3. ImageReference? image,
  4. TextValue? subtitle,
  5. TextValue? speakerNotes,
  6. bool slideNumber = false,
  7. TextValue? author,
})

Implementation

SlideTitleAndPhoto({
  super.name = 'Title and Photo',
  this.title,
  this.image,
  this.subtitle,
  super.speakerNotes,
  super.slideNumber,
  this.author,
});