addTitleBulletsAndPhotoSlide method

Slide addTitleBulletsAndPhotoSlide({
  1. TextValue? title,
  2. List<TextValue> bullets = const [],
  3. ImageReference? image,
  4. TextValue? subtitle,
})

Implementation

Slide addTitleBulletsAndPhotoSlide({
  TextValue? title,
  List<TextValue> bullets = const [],
  ImageReference? image,
  TextValue? subtitle,
}) =>
    addSlide(SlideTitleBulletsAndPhoto(
      title: title,
      subtitle: subtitle,
      bullets: bullets,
      image: image,
    ));