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