SlideTitle constructor

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

Implementation

SlideTitle({
  super.name = 'Title',
  this.title,
  super.slideNumber,
  super.speakerNotes,
  this.author,
});