GiphyFullImage constructor

const GiphyFullImage({
  1. required String url,
  2. required String width,
  3. required String height,
  4. required String size,
  5. String? mp4,
  6. String? mp4Size,
  7. String? webp,
  8. String? webpSize,
})

Creates a new full image

Implementation

const GiphyFullImage({
  required String url,
  required String width,
  required String height,
  required String size,
  this.mp4,
  this.mp4Size,
  this.webp,
  this.webpSize,
}) : super(url, width, height, size);