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 id that contain int value animation , language, speech, voice, voiceType, voiceProvider is contain String Values Canvas ,Avatar is contains a object values tags is contains a list of items

Implementation

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