GiphyPreviewImage.fromJson constructor
Implementation
factory GiphyPreviewImage.fromJson(Map<String, dynamic> json) {
return GiphyPreviewImage(
width: json['width'] as String?,
height: json['height'] as String?,
mp4: json['mp4'] as String?,
mp4Size: json['mp4_size'] as String?,
);
}