SlideTitleOnly constructor

SlideTitleOnly({
  1. String name = 'Title Only',
  2. TextValue? title,
  3. TextValue? subtitle,
  4. bool slideNumber = false,
  5. TextValue? speakerNotes,
})

Implementation

SlideTitleOnly({
  super.name = 'Title Only',
  this.title,
  this.subtitle,
  super.slideNumber,
  super.speakerNotes,
});