updateRecentGiphyGifs method
Implementation
void updateRecentGiphyGifs(List<RecentGiphyGif> recentGiphyGif,
{bool refresh = false}) {
if (mounted && refresh) {
_collection =
GiphyCollection(data: recentGiphyGif.map((e) => e.gif).toList());
setState(() {});
}
}