Links.fromJson constructor
Implementation
factory Links.fromJson(Map<String, dynamic> json) => Links(
about: List<About>.from(json["about"].map((x) => About.fromJson(x))),
product:
List<About>.from(json["product"].map((x) => About.fromJson(x))),
);