fromJson static method

RecentGiphyGif fromJson(
  1. dynamic json
)

Parse RecentEmoji from json

Implementation

static RecentGiphyGif fromJson(dynamic json) {
  return RecentGiphyGif(
    GiphyGif.fromJson(json['gif'] as Map<String, dynamic>),
    json['counter'] as int,
  );
}