Links.fromJson constructor

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

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))),
    );