GiphyFullImage.fromJson constructor
Implementation
factory GiphyFullImage.fromJson(Map<String, dynamic> json) => GiphyFullImage(
url: json['url'] as String?,
width: json['width'] as String?,
height: json['height'] as String?,
size: json['size'] as String?,
mp4: json['mp4'] as String?,
mp4Size: json['mp4_size'] as String?,
webp: json['webp'] as String?,
webpSize: json['webp_size'] as String?);