GiphyVideoPreviewAsset constructor

const GiphyVideoPreviewAsset({
  1. int width = 0,
  2. int height = 0,
  3. String? url,
})

Creates a GiphyVideoPreviewAsset object.

The width and height default to 0 if not provided.

Implementation

const GiphyVideoPreviewAsset({
  this.width = 0,
  this.height = 0,
  this.url,
});