ProductElement constructor

ProductElement({
  1. int? id,
  2. String? productId,
  3. String? orderId,
  4. String? status,
  5. dynamic deletedAt,
  6. DateTime? createdAt,
  7. DateTime? updatedAt,
  8. ProductData? product,
})

Implementation

ProductElement({
    this.id,
    this.productId,
    this.orderId,
    this.status,
    this.deletedAt,
    this.createdAt,
    this.updatedAt,
    this.product,
});