GiphyPagination.fromJson constructor
Implementation
factory GiphyPagination.fromJson(Map<String, dynamic> json) =>
GiphyPagination(
totalCount: json['total_count'] as int?,
count: json['count'] as int?,
offset: json['offset'] as int?);