GiphyWebPImage.fromJson constructor

GiphyWebPImage.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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