SlideTitleAndBullets constructor

SlideTitleAndBullets({
  1. required List<TextValue> bullets,
  2. String name = 'Title and Bullets',
  3. TextValue? title,
  4. TextValue? subtitle,
  5. TextValue? speakerNotes,
  6. bool slideNumber = false,
})

Implementation

SlideTitleAndBullets({
  required super.bullets,
  super.name = 'Title and Bullets',
  this.title,
  this.subtitle,
  super.speakerNotes,
  super.slideNumber,
});