SlideTitleAndPhotoAlt constructor

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

Implementation

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