GetMerchantEmailResponse.fromJson constructor

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

Implementation

factory GetMerchantEmailResponse.fromJson(Map<String, dynamic> json) =>
    GetMerchantEmailResponse(
      status: json["status"] == null ? null : json["status"],
      message: json["message"] == null ? null : json["message"],
      data: json["data"] == null ? null : EmailData.fromJson(json["data"]),
    );