AllWishlistWithProduct constructor

AllWishlistWithProduct({
  1. required String sId,
  2. required String? name,
  3. required String? description,
  4. required String? type,
  5. required int? moq,
  6. required bool? isOutofstock,
  7. required bool? isMultiple,
  8. required String? imageId,
  9. required WishlistPrice? price,
  10. required List<WishlistImage>? images,
})

Implementation

AllWishlistWithProduct(
    {required this.sId,
    required this.name,
    required this.description,
    required this.type,
    required this.moq,
    required this.isOutofstock,
    required this.isMultiple,
    required this.imageId,
    required this.price,
    required this.images});