GetSingleMerchantResponse.fromJson constructor
Implementation
factory GetSingleMerchantResponse.fromJson(Map<String, dynamic> json) => GetSingleMerchantResponse(
status: json["status"] == null ? null : json["status"],
message: json["message"] == null ? null : json["message"],
data: json["data"] == null ? null : MerchantData.fromJson(json["data"]),
);