GiphyPreviewImage constructor

const GiphyPreviewImage({
  1. required String width,
  2. required String height,
  3. required String mp4,
  4. required String mp4Size,
})

Creates a new preview image

Implementation

const GiphyPreviewImage({
  required String width,
  required String height,
  required this.mp4,
  required this.mp4Size,
}) : super(mp4, width, height, mp4Size);