GiphyDownsizedImage.fromJson constructor
Implementation
factory GiphyDownsizedImage.fromJson(Map<String, dynamic> json) {
return GiphyDownsizedImage(
url: json['url'] as String?,
width: json['width'] as String?,
height: json['height'] as String?,
size: json['size'] as String?,
);
}