addQuoteSlide method

Slide addQuoteSlide({
  1. TextValueLine? quote,
  2. TextValue? attribution,
})

Implementation

Slide addQuoteSlide({
  TextValueLine? quote,
  TextValue? attribution,
}) =>
    addSlide(SlideQuote(
      quote: quote,
      attribution: attribution,
    ));