UCategoryJson.fromMap constructor
Implementation
factory UCategoryJson.fromMap(Map<String, dynamic> json) => UCategoryJson(
subtitle: json["subtitle"],
link: json["link"],
location: json["location"],
type: json["type"],
relatedProducts: json["relatedProducts"] == null ? <String>[] : List<String>.from(json["relatedProducts"].map((dynamic x) => x)),
);