SlideSection constructor

SlideSection({
  1. String name = 'Section',
  2. TextValue? section,
  3. bool slideNumber = false,
  4. TextValue? speakerNotes,
})

Implementation

SlideSection({
  super.name = 'Section',
  this.section,
  super.slideNumber,
  super.speakerNotes,
});