SlideTitleBulletsAndPhoto constructor

SlideTitleBulletsAndPhoto({
  1. String name = 'Title, Bullets and Photo',
  2. TextValue? title,
  3. ImageReference? image,
  4. List<TextValue> bullets = const [],
  5. TextValue? subtitle,
  6. TextValue? speakerNotes,
  7. bool slideNumber = false,
})

Implementation

SlideTitleBulletsAndPhoto({
  super.name = 'Title, Bullets and Photo',
  this.title,
  this.image,
  this.bullets = const [],
  this.subtitle,
  super.speakerNotes,
  super.slideNumber,
});