ProductElement.fromJson constructor

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

Implementation

factory ProductElement.fromJson(Map<String, dynamic> json) => ProductElement(
    id: json["id"] == null ? null : json["id"],
    productId: json["product_id"] == null ? null : json["product_id"],
    orderId: json["order_id"] == null ? null : json["order_id"],
    status: json["status"] == null ? null : json["status"],
    deletedAt: json["deleted_at"],
    createdAt: json["created_at"] == null ? null : DateTime.parse(json["created_at"]),
    updatedAt: json["updated_at"] == null ? null : DateTime.parse(json["updated_at"]),
    product: json["product"] == null ? null : ProductData.fromJson(json["product"]),
);