addTitleAndBulletsSlide method

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

Implementation

Slide addTitleAndBulletsSlide({
  TextValue? title,
  List<TextValue> bullets = const [],
  TextValue? subtitle,
}) =>
    addSlide(SlideTitleAndBullets(
      bullets: bullets,
      title: title,
      subtitle: subtitle,
    ));