GiphyMeta.fromJson constructor

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

Implementation

factory GiphyMeta.fromJson(Map<String, dynamic> json) => GiphyMeta(
    status: json['status'] as int? ?? 0,
    msg: json['msg'] as String? ?? '',
    responseId: json['response_id'] as String? ?? '');