Meta.fromJson constructor

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

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?,
    );