factory ShopResponse.fromJson(Map<String, dynamic> json) => ShopResponse( shop: json["shop"] == null ? null : Shop.fromJson(json["shop"]), );