Slide constructor

Slide({
  1. int? id,
  2. Canvas? canvas,
  3. Avatar? avatar,
  4. String? animation,
  5. String? language,
  6. String? speech,
  7. String? voice,
  8. String? voiceType,
  9. String? voiceProvider,
})

This is constructor of Slide

Implementation

Slide({
  this.id,
  this.canvas,
  this.avatar,
  this.animation,
  this.language,
  this.speech,
  this.voice,
  this.voiceType,
  this.voiceProvider,
});