GiphyFullImage.fromJson constructor

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

Implementation

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