GiphyMeta.fromJson constructor

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

Creates a new meta object from json

Implementation

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