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