ShopResponse.fromJson constructor

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

Implementation

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