GiphyVideo constructor

const GiphyVideo({
  1. String? hlsManifestURL,
  2. String? dashManifestURL,
  3. GiphyAssets? assets,
  4. GiphyVideoPreviews? previews,
  5. GiphyVideoCaptions? captions,
  6. double? duration,
})

Creates a new GiphyVideo instance.

The hlsManifestURL, dashManifestURL, assets, previews, captions, and duration parameters are optional and can be null.

Implementation

const GiphyVideo({
  this.hlsManifestURL,
  this.dashManifestURL,
  this.assets,
  this.previews,
  this.captions,
  this.duration,
});