GiphyWebPImage.fromJson constructor

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

Implementation

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