GiphyDownsizedImage.fromJson constructor

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

Implementation

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