GiphyVideoCaption constructor

const GiphyVideoCaption({
  1. String? srt,
  2. String? vtt,
})

Creates a new GiphyVideoCaption instance.

Both srt and vtt parameters are optional and can be supplied as null.

Implementation

const GiphyVideoCaption({
  this.srt,
  this.vtt,
});