GiphyImage constructor

const GiphyImage({
  1. String? gifUrl,
  2. int width = 0,
  3. int height = 0,
  4. int gifSize = 0,
  5. int frames = 0,
  6. String? mp4Url,
  7. int mp4Size = 0,
  8. String? webPUrl,
  9. int webPSize = 0,
  10. String? mediaId,
  11. GiphyRendition? renditionType,
})

Creates a GiphyImage instance with the given attributes.

Implementation

const GiphyImage({
  this.gifUrl,
  this.width = 0,
  this.height = 0,
  this.gifSize = 0,
  this.frames = 0,
  this.mp4Url,
  this.mp4Size = 0,
  this.webPUrl,
  this.webPSize = 0,
  this.mediaId,
  this.renditionType,
});