SlideAgenda constructor

SlideAgenda({
  1. String name = 'Agenda',
  2. TextValue? title,
  3. TextValue? subtitle,
  4. TextValue? topics,
  5. bool slideNumber = false,
  6. TextValue? speakerNotes,
})

Implementation

SlideAgenda({
  super.name = 'Agenda',
  this.title,
  this.subtitle,
  this.topics,
  super.slideNumber,
  super.speakerNotes,
});