DeleteLinks.fromJson constructor

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

Implementation

factory DeleteLinks.fromJson(Map<String, dynamic> json) => DeleteLinks(
      self: List<Collection>.from(
          json["self"].map((x) => Collection.fromJson(x))),
      collection: List<Collection>.from(
          json["collection"].map((x) => Collection.fromJson(x))),
      customer: List<Collection>.from(
          json["customer"].map((x) => Collection.fromJson(x))),
    );