GiphyStillImage.fromJson constructor

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

Implementation

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