SlideQuote constructor

SlideQuote({
  1. String name = 'Quote',
  2. TextValue? attribution,
  3. TextValueLine? quote,
  4. bool slideNumber = false,
  5. TextValue? speakerNotes,
})

Implementation

SlideQuote({
  super.name = 'Quote',
  this.attribution,
  this.quote,
  super.slideNumber,
  super.speakerNotes,
});