SlidePhoto constructor

SlidePhoto({
  1. String name = 'Photo',
  2. ImageReference? image,
  3. TextValue? speakerNotes,
  4. bool slideNumber = false,
})

Implementation

SlidePhoto({
  super.name = 'Photo',
  this.image,
  super.speakerNotes,
  super.slideNumber,
});