GiphyOriginalImage constructor

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

Creates a new original image

Implementation

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