TopSellerReport.fromJson constructor
Implementation
factory TopSellerReport.fromJson(Map<String, dynamic> json) =>
TopSellerReport(
title: json["title"],
productId: json["product_id"],
quantity: json["quantity"],
links: Links.fromJson(json["_links"]),
);