Pack constructor

Pack({
  1. required List<String> categoryId,
  2. required String? packSKU,
  3. required String? packName,
  4. required int? moq,
  5. required String? packVariant,
  6. required String? packImage,
  7. required String? packId,
})

Implementation

Pack({
  required this.categoryId,
  required this.packSKU,
  required this.packName,
  required this.moq,
  required this.packVariant,
  required this.packImage,
  required this.packId,
  // required this.sTypename
});