GiphyStillImage.fromJson constructor

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

Implementation

factory GiphyStillImage.fromJson(Map<String, dynamic> json) =>
    GiphyStillImage(
      url: json['url'],
      width: json['width'],
      height: json['height'],
      size: json['size'] ?? '',
    );