addTitleAndPhotoSlide method

Slide addTitleAndPhotoSlide({
  1. TextValue? title,
  2. ImageReference? image,
  3. TextValue? author,
  4. TextValue? subtitle,
})

Implementation

Slide addTitleAndPhotoSlide({
  TextValue? title,
  ImageReference? image,
  TextValue? author,
  TextValue? subtitle,
}) =>
    addSlide(SlideTitleAndPhoto(
      title: title,
      subtitle: subtitle,
      image: image,
      author: author,
    ));